Prep for v1.14.2 (#539) #692
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: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| # needed to allow julia-actions/cache to delete old caches that it has created | |
| permissions: | |
| actions: write | |
| contents: read | |
| jobs: | |
| test: | |
| name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: ['1.10', '1'] # Test against LTS and current minor release | |
| os: [ubuntu-latest, macOS-latest, windows-latest] | |
| arch: [default] | |
| include: | |
| # Test Julia v1.9 | |
| - version: '1.9' | |
| os: ubuntu-latest | |
| arch: x64 | |
| # Test again linux ARM | |
| - version: '1' | |
| os: ubuntu-24.04-arm | |
| arch: arm64 | |
| # Also test against 32-bit Linux on LTS. | |
| - version: '1.10' | |
| os: ubuntu-latest | |
| arch: x86 | |
| - version: '1' | |
| os: windows-latest | |
| arch: x86 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v3 | |
| with: | |
| version: ${{ matrix.version }} | |
| arch: ${{ matrix.arch }} | |
| - uses: julia-actions/cache@v3 | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - uses: julia-actions/julia-runtest@v1 | |
| env: | |
| OMP_CANCELLATION: "TRUE" | |
| OMP_PROC_BIND: "TRUE" | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| - uses: codecov/codecov-action@v6 | |
| with: | |
| files: lcov.info | |
| token: ${{ secrets.CODECOV_TOKEN }} |