Merge pull request #3890 from AayushSabharwal/as/fix-empty-system #2570
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: "Tests" | |
on: | |
pull_request: | |
branches: | |
- master | |
- 'release-' | |
- v10 | |
paths-ignore: | |
- 'docs/**' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'docs/**' | |
- 'benchmark/**' | |
concurrency: | |
# Skip intermediate builds: always, but for the master branch. | |
# Cancel intermediate builds: always, but for the master branch. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
tests: | |
name: "Tests" | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- "1" | |
- "lts" | |
- "pre" | |
group: | |
- InterfaceI | |
- InterfaceII | |
- Initialization | |
- SymbolicIndexingInterface | |
- Extended | |
- Extensions | |
- Downstream | |
- RegressionI | |
- FMI | |
uses: "SciML/.github/.github/workflows/tests.yml@master" | |
with: | |
julia-version: "${{ matrix.version }}" | |
group: "${{ matrix.group }}" | |
# Disable cache for self-hosted runners since they persist between runs | |
# Set USE_SELF_HOSTED repository variable to 'true' when using self-hosted runners | |
self-hosted: ${{ vars.USE_SELF_HOSTED == 'true' }} | |
cache: ${{ vars.USE_SELF_HOSTED != 'true' }} | |
secrets: "inherit" |