We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71ccd5a commit 1902c91Copy full SHA for 1902c91
.github/workflows/python-package.yml
@@ -91,6 +91,14 @@ jobs:
91
if: matrix.python-version == '3.8' || matrix.python-version == '3.9'
92
run: |
93
pip install -e .[vw]
94
+ - name: Clean up cache to free space
95
+ run: |
96
+ echo "Run `sudo rm -rf /home/runner/actions-runner/cached/*` to clear GitHub Actions cache"
97
+ sudo rm -rf /home/runner/actions-runner/cached/*
98
+ - name: Clear pip cache
99
100
+ echo "Run `pip cache purge` to clear pip cache"
101
+ pip cache purge
102
- name: Test with pytest
103
if: matrix.python-version != '3.10'
104
0 commit comments