We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0b486d commit f3dfac7Copy full SHA for f3dfac7
.github/workflows/ci.yml
@@ -37,6 +37,9 @@ jobs:
37
run: |
38
python -m pip install --upgrade pip
39
pip install -r .github/workflows/requirements.txt
40
+ - name: Check disk space
41
+ run: ./check-disk-space
42
+ shell: bash
43
- name: Execute test-all
44
run: ./test-all
45
shell: bash
check-disk-space
@@ -0,0 +1,7 @@
1
+#!/bin/bash
2
+
3
+set -euo pipefail
4
5
+df -h
6
+du -sh
7
+du -sh /*
0 commit comments