Skip to content

Commit 3143494

Browse files
authored
Merge pull request #1 from rzmahmood/bump-geth-version
Bump Dependencies and added CI
2 parents 02dd824 + 7f7b335 commit 3143494

File tree

4 files changed

+121
-55
lines changed

4 files changed

+121
-55
lines changed

.github/workflows/build-test.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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 ./...

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,7 @@
1515
dist
1616
bin
1717
build
18-
vendor
18+
vendor
19+
20+
# IDEs and Tooling
21+
.idea

go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/immutable/go-solidity-sha3
22

3-
go 1.16
3+
go 1.17
44

55
require (
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

0 commit comments

Comments
 (0)