Skip to content

Commit

Permalink
Merge pull request #64 from nats-io/rm-go-get
Browse files Browse the repository at this point in the history
Use go install instead of go get
  • Loading branch information
variadico authored Jan 31, 2022
2 parents 9a443f2 + 5931e46 commit f2382e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
GO111MODULE: "on"
run: |
export GOPATH="$RUNNER_WORKSPACE"
go get -v github.com/wadey/gocovmerge
go get -v github.com/golangci/golangci-lint/cmd/golangci-lint
cd /tmp && go install -v github.com/wadey/gocovmerge@latest
cd /tmp && go install -v github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Lint
shell: bash --noprofile --norc -x -eo pipefail {0}
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
GO111MODULE: 'on'
run: |
export GOPATH="$RUNNER_WORKSPACE"
go get -v github.com/wadey/gocovmerge
go get -v github.com/golangci/golangci-lint/cmd/golangci-lint
cd /tmp && go install -v github.com/wadey/gocovmerge@latest
cd /tmp && go install -v github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Release
shell: bash --noprofile --norc -x -eo pipefail {0}
env:
Expand Down

0 comments on commit f2382e4

Please sign in to comment.