woodpecker/vendor/github.com/moricho/tparallel/Makefile
Lukas c28f7cb29f
Add golangci-lint (#502)
Initial part of #435
2021-11-14 21:01:54 +01:00

13 lines
199 B
Makefile

all: build
.PHONY: build
build:
go build -o tparallel ./cmd/tparallel
.PHONY: build_race
build_race:
go build -race -o tparallel ./cmd/tparallel
.PHONY: test
test: build_race
go test -v ./...