We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105f260 commit 48e551fCopy full SHA for 48e551f
1 file changed
.github/workflows/ci.yml
@@ -30,8 +30,9 @@ jobs:
30
virtualenvs-create: true
31
virtualenvs-in-project: true
32
33
- - name: Load cached venv
+ - name: Load cached venv (Unix only)
34
id: cached-poetry-dependencies
35
+ if: runner.os != 'Windows'
36
uses: actions/cache@v4
37
with:
38
path: .venv
@@ -42,7 +43,7 @@ jobs:
42
43
run: poetry install --no-interaction --no-root
44
45
- name: Install dependencies (Windows)
- if: runner.os == 'Windows' && steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
46
+ if: runner.os == 'Windows'
47
shell: bash
48
49
0 commit comments