Skip to content

Commit

Permalink
Change CI to use macos-13 for Python 3.8 and 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani committed Apr 23, 2024
1 parent 82e4664 commit 834aeda
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
include:
# no pydantic-core binaries for pypy on windows, so tests take absolute ages
Expand All @@ -108,12 +108,24 @@ jobs:
python-version: 'pypy3.9'
- os: ubuntu
python-version: 'pypy3.10'
exclude:
# Python 3.8 and 3.9 are not available on macOS 14
- os: macos-13
python: '3.10'
- os: macos-13
python: '3.11'
- os: macos-13
python: '3.12'
- os: macos-latest
python: '3.8'
- os: macos-latest
python: '3.9'

env:
OS: ${{ matrix.os }}
DEPS: yes

runs-on: ${{ matrix.os }}-latest
runs-on: ${{ matrix.os }}

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

0 comments on commit 834aeda

Please sign in to comment.