From 7c1e3c1c97a094770cf2f327cdd2f2043d667e79 Mon Sep 17 00:00:00 2001 From: bulletmys Date: Sun, 10 Oct 2021 20:22:25 +0300 Subject: [PATCH] upd github actions --- .github/workflows/go.yml | 3 ++- Makefile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c9f9231..58e2dc9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,6 +11,7 @@ jobs: build: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: go: [ '1.17', '1.16', '1.15' ] steps: @@ -22,7 +23,7 @@ jobs: go-version: ${{ matrix.go }} - name: Install golint - run: go get golang.org/x/lint/golint + run: go install golang.org/x/lint/golint - name: Build and Run tests run: make diff --git a/Makefile b/Makefile index c527340..cc5ebba 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ clean: rm -rf benchmark/*_easyjson.go build: - go build -i -o ./bin/easyjson ./easyjson + go build -o ./bin/easyjson ./easyjson generate: build bin/easyjson -stubs \