File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments