From e8ff75d09c9d4ece72727afec1b7a53a73b65408 Mon Sep 17 00:00:00 2001 From: deeenes Date: Mon, 3 Mar 2025 18:42:52 +0100 Subject: [PATCH] `ci`: run OSX only for `py313` --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bceb8a8..3832a40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,11 +18,13 @@ jobs: max-parallel: 4 matrix: os: [ubuntu-latest, macos-latest] - python: ['3.13'] + python: ['3.9', '3.10', '3.11', '3.12', '3.13'] test_server: [false] + exclude: + - os: macos-latest include: - - os: ubuntu-latest - python: ['3.9', '3.10', '3.11', '3.12', '3.13'] + - os: macos-latest + python: '3.13' env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python }}