File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 4848 **/**.go
4949 **/go.mod
5050 **/go.sum
51+ - name : Update deps
52+ run : go mod tidy
53+
5154 - name : Build
5255 run : GOARCH=${{ matrix.go-arch }} LEDGER_ENABLED=false make build
5356
@@ -105,6 +108,8 @@ jobs:
105108 with :
106109 name : " ${{ github.sha }}-${{ matrix.part }}"
107110 if : env.GIT_DIFF
111+ - name : Update deps
112+ run : go mod tidy
108113 - name : test & coverage report creation
109114 run : |
110115 xargs --arg-file=pkgs.txt.part.${{ matrix.part }} go test -mod=readonly -timeout 30m -race -tags='cgo ledger test_ledger_mock'
Original file line number Diff line number Diff line change 3535 **/**.go
3636 **/go.mod
3737 **/go.sum
38+ - name : Update deps
39+ run : go mod tidy
40+
3841 - name : Build
3942 run : GOARCH=${{ matrix.go-arch }} LEDGER_ENABLED=false make build
4043
5659 **/**.go
5760 go.mod
5861 go.sum
62+ - name : Update deps
63+ run : go mod tidy
5964 - name : Run submodule tests and create test coverage profile.
6065 # GIT_DIFF is passed to the scripts
6166 run : bash scripts/module-tests.sh
@@ -191,6 +196,8 @@ jobs:
191196 **/**.go
192197 go.mod
193198 go.sum
199+ - name : Update deps
200+ run : go mod tidy
194201 - name : test rosetta
195202 run : |
196203 make test-rosetta
@@ -211,6 +218,8 @@ jobs:
211218 **/**.go
212219 go.mod
213220 go.sum
221+ - name : Update deps
222+ run : go mod tidy
214223 - name : start localnet
215224 run : |
216225 make clean localnet-start
@@ -252,6 +261,8 @@ jobs:
252261 **/**.go
253262 go.mod
254263 go.sum
264+ - name : Update deps
265+ run : go mod tidy
255266 - uses : actions/cache@v3
256267 with :
257268 path : ~/go/bin
You can’t perform that action at this time.
0 commit comments