From 49f110cd1e18d02bc3dbd34f8846868b6245d67b Mon Sep 17 00:00:00 2001 From: Alexis Montoison <35051714+amontoison@users.noreply.github.com> Date: Mon, 1 Dec 2025 20:28:09 -0800 Subject: [PATCH] Update CI workflow for Julia versions and OS support --- .github/workflows/ci.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae43153..67ab855 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,24 +13,28 @@ jobs: strategy: fail-fast: false matrix: - version: ['1.6', '1'] - os: [ubuntu-latest, macos-latest, windows-latest] + version: ['lts', '1'] + os: [ubuntu-latest, macos-latest, windows-latest, macos-15-intel] arch: [x64] allow_failure: [false] include: + - version: '1' + os: ubuntu-24.04-arm + arch: arm64 + allow_failure: false - version: '1' os: macos-latest arch: arm64 allow_failure: false - - version: 'nightly' + - version: 'pre' os: ubuntu-latest arch: x64 allow_failure: true - - version: 'nightly' + - version: 'pre' os: macos-latest arch: x64 allow_failure: true - - version: 'nightly' + - version: 'pre' os: windows-latest arch: x64 allow_failure: true @@ -56,3 +60,4 @@ jobs: - uses: codecov/codecov-action@v3 with: files: lcov.info +