From 3b1a769014271ca6291115f7fbec0b9d87ccd21d Mon Sep 17 00:00:00 2001 From: Sheehan Olver Date: Mon, 20 Apr 2026 14:56:49 +0100 Subject: [PATCH 1/3] Restore mac tests but on ARM --- .github/workflows/ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4991c31d..53182a8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: - pull_request jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -14,13 +14,7 @@ jobs: - '1' os: - ubuntu-latest -# - macOS-latest - arch: - - x86 - - x64 - exclude: - - os: macOS-latest - arch: x86 + - macOS-latest steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 From a070ad3c5d2ce4082acc7e0ea147a3a55a371079 Mon Sep 17 00:00:00 2001 From: Sheehan Olver Date: Mon, 20 Apr 2026 14:57:56 +0100 Subject: [PATCH 2/3] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53182a8c..67e693e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - macOS-latest steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v2 + - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} From e3d2dcddf29774dcad2dde69658650c2a15b2dab Mon Sep 17 00:00:00 2001 From: Sheehan Olver Date: Mon, 20 Apr 2026 15:00:57 +0100 Subject: [PATCH 3/3] Update ci.yml --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67e693e9..530d7c39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,11 +16,10 @@ jobs: - ubuntu-latest - macOS-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} - arch: ${{ matrix.arch }} show-versioninfo: true - uses: actions/cache@v3 env: @@ -32,10 +31,10 @@ jobs: ${{ runner.os }}-test-${{ env.cache-name }}- ${{ runner.os }}-test- ${{ runner.os }}- - - uses: julia-actions/julia-buildpkg@latest - - uses: julia-actions/julia-runtest@latest + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} file: lcov.info