We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b7f3dd commit 6ef58ceCopy full SHA for 6ef58ce
1 file changed
.github/workflows/build.yaml
@@ -28,6 +28,7 @@ jobs:
28
echo "local_venvs=$(pipx environment -v PIPX_LOCAL_VENVS)" >> $GITHUB_OUTPUT
29
30
- name: Cache Poetry
31
+ id: cache_poetry
32
uses: actions/cache@v3.3.1
33
with:
34
path: |
@@ -36,6 +37,7 @@ jobs:
36
37
key: poetry-${{ runner.os }}-${{ hashFiles('.github/workflows/build.yaml') }}
38
39
- name: Setup Poetry
40
+ if: !steps.cache_poetry.outputs.cache-hit
41
run: pipx install poetry
42
43
- name: Install deps
0 commit comments