From 380aa284a747348ffb890b3f681172efc79c450f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Fuhrmann?= Date: Fri, 17 Apr 2026 13:05:39 +0200 Subject: [PATCH] fix ci matrix --- .github/workflows/ci.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1b6817..3701a19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,15 +15,23 @@ jobs: fail-fast: false matrix: version: - - 'lts' # Replace this with the minimum Julia version that your package supports. + - 'lts' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'. - '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia. - - 'nightly' + - 'pre' os: - ubuntu-latest - - macos-latest - windows-latest + - macOS-latest arch: - x64 + - aarch64 + exclude: + - os: ubuntu-latest + arch: aarch64 + - os: windows-latest + arch: aarch64 + - os: macOS-latest + arch: x64 steps: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v3