Handle DEVerbosity in weak SDE callbacks #113
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: "GPU Tests" | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - 'release-' | |
| paths-ignore: | |
| - 'docs/**' | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'docs/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }} | |
| jobs: | |
| # CUDA tests run via the grouped-tests matrix (test/test_groups.toml `[CUDA]` | |
| # group, self-hosted gpu-v100 runner) defined in Tests.yml. This workflow now | |
| # only builds the GPU documentation. | |
| gpu-docs: | |
| name: "Documentation" | |
| runs-on: [self-hosted, gpu-v100] | |
| timeout-minutes: 360 | |
| if: github.event_name == 'push' || !github.event.pull_request.draft | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: julia-actions/setup-julia@v3 | |
| with: | |
| version: "1" | |
| - name: Instantiating project | |
| shell: julia --color=yes --project=docs {0} | |
| run: | | |
| using Pkg | |
| Pkg.develop(PackageSpec(path=pwd())) | |
| Pkg.instantiate() | |
| - name: Building documentation | |
| run: julia --color=yes --project=docs docs/make.jl | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
| DATADEPS_ALWAYS_ACCEPT: true |