mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 12:21:03 +00:00
c28f7cb29f
Initial part of #435
16 lines
286 B
Makefile
16 lines
286 B
Makefile
.PHONY: gen lint test install man
|
|
|
|
VERSION := `git vertag get`
|
|
COMMIT := `git rev-parse HEAD`
|
|
|
|
gen:
|
|
go generate ./...
|
|
|
|
lint: gen
|
|
golangci-lint run
|
|
|
|
test: lint
|
|
go test -v --race ./...
|
|
|
|
install: test
|
|
go install -a -ldflags "-X=main.version=$(VERSION) -X=main.commit=$(COMMIT)" ./...
|