From 6c396aca2864ac0249d605412bf83ce9de5d7189 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Thu, 17 Oct 2024 09:09:40 +0200 Subject: [PATCH 1/2] Test `min`, `lts` and `1` in CI --- .github/workflows/ci.yml | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2806974..ddd57998 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,31 +14,27 @@ jobs: 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 From f1acc19bd96af1b4b7ad11a2c5d1f96cff8b651e Mon Sep 17 00:00:00 2001 From: David Widmann Date: Thu, 17 Oct 2024 09:19:12 +0200 Subject: [PATCH 2/2] Improve job name --- .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 ddd57998..8c902d30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ 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