Skip to content

Commit 2683570

Browse files
committed
[DO NOT MERGE] Show disk space.
Signed-off-by: Felix Fontein <felix@fontein.de>
1 parent a1bd885 commit 2683570

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/cli.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,28 +28,35 @@ jobs:
2828
VAULT_TOKEN: "root"
2929
VAULT_ADDR: "http://127.0.0.1:8200"
3030
steps:
31+
- run: df
3132
- name: Check out code into the Go module directory
3233
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3334
with:
3435
persist-credentials: false
3536

37+
- run: df
3638
- name: Set up Go ${{ matrix.go-version }}
3739
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
3840
with:
3941
go-version: ${{ matrix.go-version }}
4042
cache: false
4143
id: go
4244

45+
- run: df
4346
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
4447
with:
4548
path: ~/go/pkg/mod
4649
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
4750
restore-keys: |
4851
${{ runner.os }}-go-
4952
53+
- run: df
54+
if: always()
5055
- name: Vendor Go Modules
5156
run: make vendor
5257

58+
- run: df
59+
if: always()
5360
- name: Ensure clean working tree
5461
run: git diff --exit-code
5562

0 commit comments

Comments
 (0)