mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-28 00:56:30 +00:00
* update github.com/docker/cli * update github.com/docker/distribution * update github.com/docker/docker * update github.com/gin-gonic/gin * update github.com/golang-jwt/jwt/v4 * update github.com/golangci/golangci-lint * update github.com/gorilla/securecookie * update github.com/mattn/go-sqlite3 * update github.com/moby/moby * update github.com/prometheus/client_golang * update github.com/xanzy/go-gitlab
28 lines
473 B
Makefile
28 lines
473 B
Makefile
.PHONY: default
|
|
default: build
|
|
|
|
.PHONY: build
|
|
build:
|
|
go build ./...
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -cover ./...
|
|
|
|
.PHONY: install-vet
|
|
install-vet:
|
|
go install github.com/nishanths/exhaustive/cmd/exhaustive@latest
|
|
go install github.com/gordonklaus/ineffassign@latest
|
|
go install github.com/kisielk/errcheck@latest
|
|
|
|
.PHONY: vet
|
|
vet:
|
|
go vet ./...
|
|
exhaustive ./...
|
|
ineffassign ./...
|
|
errcheck ./...
|
|
|
|
.PHONY: upgrade-deps
|
|
upgrade-deps:
|
|
go get golang.org/x/tools
|
|
go mod tidy
|