Skip to content

Commit

Permalink
ci: Test under Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
riddell-stan committed Apr 11, 2024
1 parent 09c0cf2 commit a9db025
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ jobs:
include:
- os: ubuntu-22.04
python-version: "3.11"
- os: ubuntu-22.04
python-version: "3.12"
- os: macos-11.0
python-version: "3.10"
- os: macos-11.0
python-version: "3.11"
- os: macos-11.0
python-version: "3.12"
steps:
- name: Check out repository
uses: actions/checkout@v2
Expand All @@ -38,8 +42,10 @@ jobs:
poetry export -f requirements.txt --without-hashes --with dev -o requirements.txt \
&& pip install -r requirements.txt
# disable building docs (included in checks) under Python 3.12, sphinx dependencies do not work
- name: Check code
run: scripts/check
if: ${{ matrix.python-version != 3.12 }}

- name: Build and Install wheel
run: |
Expand Down

0 comments on commit a9db025

Please sign in to comment.