From b62d1305160c2071f5132dd999b251cc625c6863 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 12 Oct 2022 22:47:44 +0200 Subject: [PATCH] CI: test on Julia 1.8; fewer macOS tests --- .github/workflows/CI.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f768db6a..7bdd0152 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,13 +21,21 @@ jobs: matrix: julia-version: - '1.6' - - '~1.7.0-0' + - '1.7' + - '1.8' - 'nightly' julia-arch: - x64 os: - ubuntu-latest - - macOS-latest + include: + # Add a few macOS jobs (not too many, the number we can run in parallel is limited) + - julia-version: '1.6' + julia-arch: x64 + os: macOS-latest + - julia-version: 'nightly' + julia-arch: x64 + os: macOS-latest steps: - uses: actions/checkout@v3