From 85c8616f1ae474105d1952b30d619a89e8b1aa4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 19 Oct 2024 11:59:58 +0200 Subject: [PATCH] Add tests on macOS 14 in CI, update Python versions --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 626a6956..c12142d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,16 +8,19 @@ jobs: build: - runs-on: ubuntu-22.04 strategy: matrix: + os: + - ubuntu-24.04 + - macos-14 python-version: - - "3.7" - - "3.8" - "3.9" - "3.10" + - "3.11" + - "3.12" name: Python ${{ matrix.python-version }} on ${{ matrix.os }} + runs-on: ${{ matrix.os }} steps: