Skip to content

Commit

Permalink
ci: Add all supported Pythons to testing (#554)
Browse files Browse the repository at this point in the history
* Add Python 3.11 and 3.12 to tests.
* Only install required tools for linting.
  • Loading branch information
matthewfeickert authored May 13, 2024
1 parent dff617d commit 853ee6a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ jobs:
- name: "Install Python dependencies"
run: |
python -m pip install --upgrade uv
uv pip install --system --upgrade pip setuptools wheel
uv pip install --system ".[lint]"
uv pip install --system --upgrade black isort
uv pip list --system
- name: "Check format"
run: |
Expand All @@ -49,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v4
Expand Down

0 comments on commit 853ee6a

Please sign in to comment.