Skip to content

Commit

Permalink
ci: fix poetry install
Browse files Browse the repository at this point in the history
  • Loading branch information
bonjourmauko committed Oct 16, 2024
1 parent a76e65d commit e9ea017
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
# Patch version must be specified to avoid any cache confusion, since
# the cache key depends on the full Python version. Any potential
# difference in patches between jobs will lead to a cache not found error.
python-version: 3.9.20
cache: poetry
cache-dependency-path: poetry.lock

- name: Cache tests
uses: actions/cache@v4
Expand Down Expand Up @@ -58,6 +57,9 @@ jobs:
- name: Install Tox
run: pipx install tox

- name: Install Poetry
run: pipx install poetry

- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit e9ea017

Please sign in to comment.