Skip to content

Commit

Permalink
missing py3.12 run on mac/win
Browse files Browse the repository at this point in the history
  • Loading branch information
waghanza committed Dec 17, 2023
1 parent 3c62be1 commit 92d01f1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,17 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip # due to https://github.com/pypa/pip/issues/11501
run: pip install pip -U
if: ${{ matrix.python-version == '3.12' }}
- name: Install and configure Poetry
uses: gi0baro/[email protected]
with:
Expand All @@ -73,14 +76,17 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip # due to https://github.com/pypa/pip/issues/11501
run: pip install pip -U
if: ${{ matrix.python-version == '3.12' }}
- name: Install and configure Poetry
uses: gi0baro/[email protected]
with:
Expand Down

0 comments on commit 92d01f1

Please sign in to comment.