From bf698da4fb359bbb636513c90a0ca57061342fd7 Mon Sep 17 00:00:00 2001 From: Michael Ekstrand Date: Mon, 19 Feb 2024 18:00:00 -0500 Subject: [PATCH] add macOS 14 (M1) to test matrix --- .github/workflows/test.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8d080e7..c4cdad3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,13 +12,14 @@ concurrency: jobs: test: name: Test with Python ${{matrix.python}} on ${{matrix.platform}} - runs-on: ${{matrix.platform}}-latest + runs-on: ${{matrix.platform}} strategy: matrix: platform: - - macos - - windows - - ubuntu + - macos-latest + - windows-latest + - ubuntu-latest + - macos-14 python: - "3.10" - "3.11"