Skip to content

Commit

Permalink
Exclude python3.9 for macOS from CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaraBuettner committed Aug 13, 2024
1 parent 5521ec5 commit 2755d00
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -13,18 +13,18 @@ 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

steps:
- 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
Expand Down

0 comments on commit 2755d00

Please sign in to comment.