From b8ef2be98514e92c20c9cc7367b135a3005db31f Mon Sep 17 00:00:00 2001 From: Jakob Nybo Nissen Date: Tue, 28 May 2024 12:31:37 +0200 Subject: [PATCH] Drop CI for MacOS Julia 1.5 The latest MacOS is not compatible with x86 processors, and Julia 1.5 is only compatible with x86. We could test on older versions of MacOS, but why bother. --- .github/workflows/UnitTests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/UnitTests.yml b/.github/workflows/UnitTests.yml index 4909733e..075f8686 100644 --- a/.github/workflows/UnitTests.yml +++ b/.github/workflows/UnitTests.yml @@ -12,16 +12,19 @@ jobs: fail-fast: false matrix: julia-version: - - '1.5' # Minimally supported version of Julia + - '1.5' # Minimally supported version of Julia. - '1' julia-arch: [x86] - os: [ubuntu-latest, windows-latest, macOS-latest] + os: [ubuntu-latest, windows-latest] experimental: [false] include: - julia-version: nightly julia-arch: x86 os: ubuntu-latest experimental: true + - julia-version: 1 + os: macOS-latest + experimental: false steps: - name: Checkout Repository