Merge pull request #306 from SciML/ChrisRackauckas-patch-1 #162
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-' | |
| paths-ignore: | |
| - 'docs/**' | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'docs/**' | |
| 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: | |
| - Core | |
| - Downstream | |
| uses: "SciML/.github/.github/workflows/tests.yml@v1" | |
| with: | |
| julia-version: "${{ matrix.version }}" | |
| group: "${{ matrix.group }}" | |
| secrets: "inherit" |