Enable rendered public API docs QA #752
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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| 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: | |
| tests: | |
| # Root-only test groups (Core, QA) are declared in test/test_groups.toml. | |
| # The lib/* sublibraries (DataDrivenDMD, DataDrivenSR, DataDrivenSparse, | |
| # DataDrivenLux) are covered by SublibraryCI.yml via the project model and | |
| # must not be double-tested through this root matrix. | |
| uses: "SciML/.github/.github/workflows/grouped-tests.yml@v1" | |
| with: | |
| coverage-directories: "src" | |
| secrets: "inherit" |