From f76d3b463fb30a984466b78f1eede07c45d84522 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 26 Aug 2024 20:22:52 -0400 Subject: [PATCH] Add Ubuntu 24.04 & 22.04 and macOS 14, 13, & 12 Remove older EOL versions of both operating systems. --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1ab8fb4..b761091 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,8 +24,9 @@ jobs: run-tests: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: - os: [ 'ubuntu-20.04', 'macos-10.15' ] + os: [ 'ubuntu-24.04', 'ubuntu-22.04', 'macos-14', 'macos-13', 'macos-12' ] name: ${{ matrix.os }} steps: - name: Checkout repo