Fix CI runner crashes: cycle detection, SymbolicUtils ≥ 4.27 floor, macOS arm64 #203
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 | |
| - main | |
| paths-ignore: | |
| - 'docs/**' | |
| push: | |
| branches: | |
| - master | |
| - main | |
| paths-ignore: | |
| - 'docs/**' | |
| tags: '*' | |
| jobs: | |
| test: | |
| name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.group }} - ${{ github.event_name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| group: | |
| - easy | |
| - difficult | |
| version: | |
| - '1.10' | |
| - '1' | |
| - 'pre' | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v3 | |
| with: | |
| version: ${{ matrix.version }} | |
| - uses: julia-actions/cache@v3 | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - name: Run tests | |
| uses: julia-actions/julia-runtest@v1 | |
| env: | |
| TEST_GROUP: ${{ matrix.group }} | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| continue-on-error: true # <-- added: don't fail CI if coverage processing crashes on nightly | |
| - uses: codecov/codecov-action@v6 | |
| with: | |
| files: lcov.info | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: false |