Skip to content

Commit 7c1e3c1

Browse files
committed
upd github actions
1 parent 4f5f962 commit 7c1e3c1

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/go.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
go: [ '1.17', '1.16', '1.15' ]
1617
steps:
@@ -22,7 +23,7 @@ jobs:
2223
go-version: ${{ matrix.go }}
2324

2425
- name: Install golint
25-
run: go get golang.org/x/lint/golint
26+
run: go install golang.org/x/lint/golint
2627

2728
- name: Build and Run tests
2829
run: make

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ clean:
66
rm -rf benchmark/*_easyjson.go
77

88
build:
9-
go build -i -o ./bin/easyjson ./easyjson
9+
go build -o ./bin/easyjson ./easyjson
1010

1111
generate: build
1212
bin/easyjson -stubs \

0 commit comments

Comments
 (0)