From 7f42b47f274b4d00726b686cf2fd9db68a4e3258 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Mon, 28 Oct 2024 09:42:15 +0100 Subject: [PATCH] Test `min`, `lts` and `1` in CI (#478) * Test `min`, `lts` and `1` in CI * Improve job name --- .github/workflows/ci.yml | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2806974..8c902d30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,37 +8,33 @@ on: jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: version: - - '1.6' + - 'min' + - 'lts' - '1' os: - ubuntu-latest + - macOS-latest - windows-latest - arch: - - x64 + exclude: + - os: macOS-latest # Apple Silicon + version: 'min' include: - - os: macOS-13 - arch: x64 - version: 1 - - os: macOS-latest - arch: aarch64 - version: 1 - + - os: macOS-13 # Intel + version: 'min' 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 - continue-on-error: ${{ matrix.version == 'nightly' }} - uses: julia-actions/julia-processcoverage@v1 continue-on-error: true - uses: codecov/codecov-action@v4