toplevel: Parallelize report_package signature analysis
#2334
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: documentation | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: '*' | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| statuses: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@latest | |
| with: | |
| version: '1.12-nightly' # next release | |
| - name: set `JET_DEV_MODE` # enable development assertions (needs to happen before precompile) | |
| working-directory: . | |
| run: | | |
| echo '[JET] | |
| JET_DEV_MODE = true' >> LocalPreferences.toml | |
| - uses: julia-actions/julia-docdeploy@latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |