Skip to content

Commit 48e314f

Browse files
committed
Merge branch 'fix/donate-all-function' of https://github.com/terra-money/cosmos-sdk into fix/donate-all-function
2 parents cd8934f + a8682bf commit 48e314f

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/test-race.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ jobs:
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'

.github/workflows/test.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
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

@@ -56,6 +59,8 @@ jobs:
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

0 commit comments

Comments
 (0)