Skip to content

Commit

Permalink
tweaks to action structure
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarbranson committed Sep 11, 2024
1 parent 62ad9d5 commit 09f59fc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
os: [windows-latest, ubuntu-latest, macos-latest]

steps:
Expand All @@ -21,9 +21,12 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: ${{ matrix.os }} python ${{ matrix.python-version }}
- name: Install Python dependencies
shell: bash -l {0}
run: |
python3 -m pip install -r requirements.txt
python3 -m pip install -e . --no-deps --force-reinstall
- name: Run tests
run: |
python3 -m unittest

0 comments on commit 09f59fc

Please sign in to comment.