Skip to content

Commit

Permalink
Python 3.8 and 3.9 are on macos-13 but not macos-latest (macos-14-arm64)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Apr 23, 2024
1 parent 6b1589e commit f6a54c7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@ env:

jobs:
test:
runs-on: ${{ matrix.os }}
runs-on: "${{ matrix.os }}-${{ matrix.os-version || 'latest' }}"
strategy:
fail-fast: false
matrix:
python-version: ["pypy3.10", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [windows-latest, macos-latest, ubuntu-latest]
os: [Windows, macOS, Ubuntu]
# Python 3.8 and 3.9 are on macos-13 but not macos-latest (macos-14-arm64)
# https://github.com/actions/setup-python/issues/696#issuecomment-1637587760
include:
- { python-version: "3.8", os: "macOS", os-version: "13" }
- { python-version: "3.9", os: "macOS", os-version: "13" }

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit f6a54c7

Please sign in to comment.