Fix CI: Replace deprecated macos-13 with macos-15-intel #141
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 | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| 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' # LTS | |
| - '1' # Latest Stable | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| - macos-15-intel # <--- Confirmed: The only valid Intel x64 runner left | |
| - macos-latest # <--- Confirmed: Apple Silicon (ARM) | |
| arch: | |
| - x64 | |
| - aarch64 | |
| exclude: | |
| # Linux/Windows are x64 only | |
| - os: ubuntu-latest | |
| arch: aarch64 | |
| - os: windows-latest | |
| arch: aarch64 | |
| # macos-15-intel is Intel x64 only | |
| - os: macos-15-intel | |
| arch: aarch64 | |
| # macos-latest is Apple Silicon only | |
| - os: macos-latest | |
| arch: x64 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.version }} | |
| arch: ${{ matrix.arch }} | |
| - uses: julia-actions/cache@v2 | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - uses: julia-actions/julia-runtest@v1 | |
| env: | |
| GKSwstype: "100" | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| files: lcov.info | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: false |