workgroups/vendor/github.com/moricho/tparallel/Makefile
Marvin Preuss 1d4ae27878
All checks were successful
continuous-integration/drone/push Build is passing
ci: drone yaml with reusable anchors
2021-09-24 17:34:17 +02:00

14 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 ./...