File tree Expand file tree Collapse file tree 4 files changed +121
-55
lines changed
Expand file tree Collapse file tree 4 files changed +121
-55
lines changed Original file line number Diff line number Diff line change 1+ name : Go package
2+
3+ on :
4+ push :
5+ branches : [main,master]
6+ pull_request :
7+
8+ jobs :
9+ build :
10+
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v3
14+
15+ - name : Set up Go
16+ uses : actions/setup-go@v3
17+ with :
18+ go-version : 1.17
19+
20+ - name : Build
21+ run : go build -v ./...
22+
23+ - name : Test
24+ run : go test -v ./...
Original file line number Diff line number Diff line change 1515dist
1616bin
1717build
18- vendor
18+ vendor
19+
20+ # IDEs and Tooling
21+ .idea
Original file line number Diff line number Diff line change 11module github.com/immutable/go-solidity-sha3
22
3- go 1.16
3+ go 1.17
44
55require (
6- github.com/ethereum/go-ethereum v1.10.3
6+ github.com/ethereum/go-ethereum v1.10.17
77 golang.org/x/crypto v0.0.0-20210506145944-38f3c27a63bf
88)
9+
10+ require golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912 // indirect
You can’t perform that action at this time.
0 commit comments