Skip to content

Commit

Permalink
[522] added a change directory command to maybe fix the unfound pypro…
Browse files Browse the repository at this point in the history
…ject issue
  • Loading branch information
james.adams committed Jun 29, 2023
1 parent 4d0829e commit 77b53bf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/unit-tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
strategy:
matrix:
python-version: ['3.11', '3.10', '3.9', '3.8']
python-version: ['3.8', '3.9', '3.10', '3.11']

runs-on: ubuntu-latest

Expand All @@ -20,7 +20,9 @@ jobs:
run: python -m pip install --upgrade pip poetry

- name: Set up project
run: poetry install
run: |
cd ..
poetry install
- name: Run unit tests
run: poetry run pytest

0 comments on commit 77b53bf

Please sign in to comment.