Skip to content

Commit 45c19c8

Browse files
committed
check disk space before
1 parent e175542 commit 45c19c8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ env:
2222
GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dkotlin.incremental=false"
2323

2424
jobs:
25+
check-disk-space:
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Check tmp
29+
run: df -h /tmp
30+
- name: Check /
31+
run: df -h /
32+
2533
jvm:
2634
runs-on: ubuntu-latest
2735
strategy:

0 commit comments

Comments
 (0)