Skip to content

Commit

Permalink
simplify github test action
Browse files Browse the repository at this point in the history
  • Loading branch information
pattonw committed Oct 25, 2024
1 parent c550aff commit b64f8fd
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,12 @@ jobs:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install ".[dev]"
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Test with pytest
run: |
pytest tests
uv run --python ${{ matrix.python-version }} --extra dev pytest tests

0 comments on commit b64f8fd

Please sign in to comment.