-
Notifications
You must be signed in to change notification settings - Fork 17
54 lines (42 loc) · 1.13 KB
/
go.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: GoTest
on:
push:
branches: [main, dev/2.0]
pull_request:
branches: [main, dev/2.0]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "stable"
- uses: golangci/golangci-lint-action@v6
with:
version: v1.60.1
skip-cache: true
args: --timeout=2m --disable-all --enable=govet --tests=false ./...
- name: npm
uses: actions/setup-node@v4
with:
node-version: 20
- name: solc
run: sudo npm install [email protected] -g
- name: abigen
run: go install github.com/ethereum/go-ethereum/cmd/abigen@latest
- name: jq
run: sudo apt-get install jq
- name: compileSolidity
run: solcjs --version && ls && cd test/cmds/ && go run compile_solidity.go && cd ../../
- name: Build
run: |
export GO111MODULE=on
go mod tidy
make qng
- name: Test
run: |
PATH=$PATH:$(pwd)/build/bin
go test -v ./...