Skip to content

Commit

Permalink
GitHub Actions: Add Python 3.12 to the testing
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Dec 10, 2023
1 parent 0f39e01 commit a654850
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'

steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand All @@ -49,7 +50,7 @@ jobs:
run: tox --py current

- name: Run extra tox targets
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.x' }}
run: |
tox -e base,dist,docs
Expand All @@ -61,11 +62,11 @@ jobs:
name: Test documentation links
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.x'

- name: Install dependencies
run: pip install -r requirements/requirements-documentation.txt
Expand Down

0 comments on commit a654850

Please sign in to comment.