1
Fork 0

gopath fixes

main
Motiejus Jakštys 2021-06-01 09:07:32 +03:00
parent dea74a6595
commit 719919b3d8
2 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@ sources:
- https://git.sr.ht/~motiejus/undocker
tasks:
- setup: |
GOPATH=/usr/local go get honnef.co/go/tools/cmd/staticcheck
go install honnef.co/go/tools/cmd/staticcheck@latest
- test: |
make -C undocker coverage.html
- lint: |

View File

@ -1,4 +1,5 @@
GODEPS = $(shell git ls-files '*.go' go.mod go.sum)
GOBIN = $(shell go env GOPATH)/bin/
undocker: $(GODEPS)
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build
@ -9,7 +10,7 @@ test:
.PHONY: lint
lint:
staticcheck -f stylish ./...
$(GOBIN)staticcheck -f stylish ./...
go vet ./...
.INTERMEDIATE: coverage.out