We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f5f962 commit 7c1e3c1Copy full SHA for 7c1e3c1
2 files changed
.github/workflows/go.yml
@@ -11,6 +11,7 @@ jobs:
11
build:
12
runs-on: ubuntu-latest
13
strategy:
14
+ fail-fast: false
15
matrix:
16
go: [ '1.17', '1.16', '1.15' ]
17
steps:
@@ -22,7 +23,7 @@ jobs:
22
23
go-version: ${{ matrix.go }}
24
25
- name: Install golint
- run: go get golang.org/x/lint/golint
26
+ run: go install golang.org/x/lint/golint
27
28
- name: Build and Run tests
29
run: make
Makefile
@@ -6,7 +6,7 @@ clean:
6
rm -rf benchmark/*_easyjson.go
7
8
9
- go build -i -o ./bin/easyjson ./easyjson
+ go build -o ./bin/easyjson ./easyjson
10
generate: build
bin/easyjson -stubs \
0 commit comments