Skip to content

Fix CI: Replace deprecated macos-13 with macos-15-intel #141

Fix CI: Replace deprecated macos-13 with macos-15-intel

Fix CI: Replace deprecated macos-13 with macos-15-intel #141

Workflow file for this run

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