From 09f59fcde912d1adfc159b05555a1e319511b2ac Mon Sep 17 00:00:00 2001 From: Oscar Branson Date: Wed, 11 Sep 2024 10:11:04 +0100 Subject: [PATCH] tweaks to action structure --- .github/workflows/tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5c725e4..a819411 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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: @@ -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