From 2755d00ee85bda1aa587623a68a5efc1444bc376 Mon Sep 17 00:00:00 2001 From: ClaraBuettner Date: Tue, 13 Aug 2024 12:06:48 +0200 Subject: [PATCH] Exclude python3.9 for macOS from CI tests --- .github/workflows/ci.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fe3de817..dcb40f9b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,7 +4,7 @@ on: {push: {branches: ['**']}, pull_request: {branches: [dev, master]}} jobs: build: - name: ${{ matrix.os.name }} + name: ${{ matrix.os.name }} - Python ${{ matrix.python-version }} runs-on: ${{ matrix.os.image }} strategy: @@ -13,6 +13,10 @@ jobs: - {image: ubuntu-latest, name: Linux} - {image: windows-latest, name: Windows} - {image: macos-latest, name: macOS} + python-version: [3, 3.9, 3.10, 3.11] + exclude: + - os: {image: macos-latest, name: macOS} + python-version: 3.9 max-parallel: 4 fail-fast: false @@ -20,11 +24,7 @@ jobs: - uses: "actions/checkout@main" - uses: "actions/setup-python@main" with: - python-version: | - 3 - 3.9 - 3.10 - 3.11 + python-version: ${{ matrix.python-version }} - name: "Install dependencies" run: | python -mpip install --progress-bar=off nox