We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba989a commit 3e4072aCopy full SHA for 3e4072a
.github/workflows/build.yaml
@@ -26,7 +26,7 @@ jobs:
26
steps:
27
- name: Clear pip cache
28
run: |
29
- rm -rf ~/.cache/pip
+ if ($Env:RUNNER_OS -eq "Windows") { Remove-Item -Recurse -Force $env:USERPROFILE\.cache\pip } else { rm -rf ~/.cache/pip }
30
31
- name: Cache dependencies
32
id: pip-cache
0 commit comments