File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Check Licenses
2+ on :
3+ pull_request :
4+
5+ jobs :
6+ check-license :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - name : Checkout Repository
10+ uses : actions/checkout@v4
11+ - name : Install Go
12+ uses : actions/setup-go@v5
13+ with :
14+ go-version-file : ' go.mod'
15+ - name : Install go-license
16+ run : go install github.com/palantir/go-license@latest
17+ - name : Check License
18+ run : make check-license
Original file line number Diff line number Diff line change @@ -69,6 +69,9 @@ FILES := $(shell find . -name "*.go" -not -name "*.pb.go")
6969license :
7070 @go-license --config .github/license.yml $(FILES )
7171
72+ check-license :
73+ @go-license --config .github/license.yml $(FILES ) --verify
74+
7275format :
7376 @echo " 🤖 Running formatter..."
7477 @go run $(gofumpt_cmd ) -l -w .
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ require (
77 cosmossdk.io/x/upgrade v0.1.4
88 github.com/circlefin/noble-cctp v0.0.0-20241031192117-4285c94ec194
99 github.com/circlefin/noble-fiattokenfactory v0.0.0-20250123235012-5f9bd9dd2c5b
10- github.com/cosmos/cosmos-sdk v0.50.13
10+ github.com/cosmos/cosmos-sdk v0.50.14
1111 github.com/cosmos/gogoproto v1.7.0
1212 github.com/cosmos/ibc-go/v8 v8.7.0
1313 github.com/docker/docker v25.0.6+incompatible
@@ -143,7 +143,7 @@ require (
143143 github.com/gtank/merlin v0.1.1 // indirect
144144 github.com/gtank/ristretto255 v0.1.2 // indirect
145145 github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
146- github.com/hashicorp/go-getter v1.7.5 // indirect
146+ github.com/hashicorp/go-getter v1.7.9 // indirect
147147 github.com/hashicorp/go-hclog v1.5.0 // indirect
148148 github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
149149 github.com/hashicorp/go-metrics v0.5.3 // indirect
You can’t perform that action at this time.
0 commit comments