23 lines
379 B
Makefile
23 lines
379 B
Makefile
.POSIX:
|
|
|
|
.PHONY: all
|
|
all: fmt gen lint build test
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
prefix "$@" ./ci/sub/bin/fmt.sh
|
|
.PHONY: gen
|
|
gen: fmt
|
|
prefix "$@" ./ci/gen.sh
|
|
.PHONY: lint
|
|
lint: fmt
|
|
prefix "$@" go vet --composites=false ./...
|
|
.PHONY: build
|
|
build: fmt
|
|
prefix "$@" go build ./...
|
|
.PHONY: test
|
|
test: fmt
|
|
prefix "$@" ./ci/test.sh
|
|
.PHONY: race
|
|
race: fmt
|
|
prefix "$@" ./ci/test.sh --race ./...
|