Skip to content

Commit

Permalink
Test with Python 3.13 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
airtower-luna authored Oct 12, 2024
2 parents 8676056 + ac76ffe commit f2f67f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ permissions:

jobs:
lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: Test
steps:
- uses: actions/checkout@v4
- name: Set up Nox
uses: wntrblm/nox@1199ab3892b1a941f80ff052083d0a571abed79d # 2024.10.09
with:
python-versions: '3.11, 3.12'
python-versions: '3.11, 3.12, 3.13'
- name: setup annotations for flake8 results
uses: airtower-luna/flake8-annotations@d29f60162d03c010b8604adc1d5b825c989a9acc # node20
- name: Run tests and linter
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def lint(session):
session.run('flake8', '--statistics', '.')


@nox.session(python=['3.11', '3.12'])
@nox.session(python=['3.11', '3.12', '3.13'])
def test(session):
"""Run tests."""
session.install('pytest')
Expand Down

0 comments on commit f2f67f0

Please sign in to comment.