Skip to content

Commit

Permalink
Adding Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
deniszh committed Jan 19, 2024
1 parent 87c9c59 commit 10751fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
- name: "Python 3.11"
python-version: '3.11'
toxenv: 'py3'
- name: "Python 3.12"
python-version: '3.12'
toxenv: 'py3'
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -51,19 +54,19 @@ jobs:
run: |
tox
- name: Linting
if: ${{ matrix.python-version==3.11 }}
if: ${{ matrix.python-version==3.12 }}
env:
TOXENV: lint
run: |
tox
- name: Run Codecov
if: ${{ matrix.python-version==3.11 }}
if: ${{ matrix.python-version==3.12 }}
env:
TOXENV: lint
run: |
pip install codecov
codecov
- name: Upload coverage to Codecov
if: ${{ matrix.python-version==3.11 }}
if: ${{ matrix.python-version==3.12 }}
uses: codecov/codecov-action@v3

1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ envlist =
py39,
py310,
py311,
py312,
pypy,
pypy3,
lint,
Expand Down

0 comments on commit 10751fe

Please sign in to comment.