Merge pull request #415 from SciML/dependabot/github_actions/JuliaReg… #546
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 | |
| paths-ignore: | |
| - 'docs/**' | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'docs/**' | |
| schedule: | |
| - cron: '33 1 * * 4' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }} | |
| jobs: | |
| tests: | |
| name: "Tests" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - "1" | |
| - "lts" | |
| - "pre" | |
| os: | |
| - "ubuntu-latest" | |
| - "macos-latest" | |
| - "windows-latest" | |
| group: | |
| - Core | |
| - nopre | |
| exclude: | |
| - version: "pre" | |
| group: nopre | |
| include: | |
| - coverage: false | |
| - version: "1" | |
| os: "ubuntu-latest" | |
| coverage: true | |
| uses: "SciML/.github/.github/workflows/tests.yml@v1" | |
| with: | |
| group: ${{ matrix.group }} | |
| julia-version: "${{ matrix.version }}" | |
| os: "${{ matrix.os }}" | |
| coverage: ${{ matrix.coverage }} | |
| secrets: "inherit" |