Skip to content

Commit

Permalink
fix(ci): matrix for old python versions on macos
Browse files Browse the repository at this point in the history
Signed-off-by: Frost Ming <me@frostming.com>
  • Loading branch information
frostming committed Apr 24, 2024
1 parent 4106940 commit a1b1888
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,25 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", 3.12]
os: [ubuntu-latest, macOS-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- python-version: 3.8
os: macos-latest
- python-version: 3.9
os: macos-latest
include:
- python-version: 3.8
os: macos-13
- python-version: 3.9
os: macos-13

steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
cache: true

- name: Install dependencies
run: pip install nox
Expand Down

0 comments on commit a1b1888

Please sign in to comment.