Skip to content

Commit

Permalink
Fix: Force poetry to use specific environment
Browse files Browse the repository at this point in the history
Currently the poetry cache for the GitHub Actions appears not to be being used.

See: actions/setup-python#374
  • Loading branch information
alexdewar committed May 30, 2024
1 parent bb2a8ca commit 99fb6e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ jobs:
sudo apt install libegl1
- name: Install dependencies
run: poetry install
run: |
poetry env use "${{ matrix.python-version }}"
poetry install
- name: Run tests
run: poetry run pytest --cov-report=xml
Expand Down

0 comments on commit 99fb6e0

Please sign in to comment.