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 b7aec5a commit 63b9718Copy full SHA for 63b9718
1 file changed
.github/workflows/examples.yml
@@ -33,9 +33,16 @@ jobs:
33
if: startsWith(matrix.os, 'ubuntu')
34
run: |
35
# Free space
36
+ echo "Listing 50 largest packages"
37
+ dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 50
38
+ df -h
39
+ sudo rm -rf /opt/hostedtoolcache
40
+ sudo rm -rf /usr/share/dotnet
41
+ sudo rm -rf /usr/local/lib/android
42
sudo apt clean
- # docker rmi $(docker image ls -aq)
43
+ docker system prune -af
44
df -h
45
+
46
tox -e testexamples
47
48
- name: Run on macOS
0 commit comments