Skip to content

Commit

Permalink
Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jakep-allenai committed Jan 29, 2025
1 parent dcaca8a commit cdb10a9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,37 +27,37 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.10"]
python: ["3.11"]
task:
- name: Test
run: |
pytest -v --color=yes tests/
include:
- python: "3.10"
- python: "3.11"
task:
name: Lint
run: ruff check .

- python: "3.10"
- python: "3.11"
task:
name: Type check
run: mypy .

- python: "3.10"
- python: "3.11"
task:
name: Build
run: |
python -m build
- python: "3.10"
- python: "3.11"
task:
name: Style
run: |
isort --check .
black --check .
- python: "3.10"
- python: "3.11"
task:
name: Docs
run: cd docs && make html
Expand Down

0 comments on commit cdb10a9

Please sign in to comment.