Skip to content

Commit

Permalink
Build docs and test Python 3.12 and 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarbenjamin committed Mar 29, 2024
1 parent b8c3c59 commit 794a86a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]

steps:
- name: Check out the repository
Expand Down
5 changes: 4 additions & 1 deletion checks.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
#!/bin/bash

set -o errexit

pre-commit run --all-files
mypy src tests
mypy --python-version=3.12 src tests
sphinx-build -b html docs docs/_build
python -m xdoctest --quiet protosym
pytest --cov=protosym
coverage html

0 comments on commit 794a86a

Please sign in to comment.