mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-02 06:41:18 +00:00
c28f7cb29f
Initial part of #435
16 lines
224 B
Makefile
16 lines
224 B
Makefile
.PHONY: all imports test lint
|
|
|
|
all: imports test lint
|
|
|
|
imports:
|
|
goimports -w ./
|
|
|
|
test:
|
|
go test -race ./...
|
|
|
|
test_coverage:
|
|
go test -race -coverprofile=coverage.out -covermode=atomic ./...
|
|
|
|
lint:
|
|
golangci-lint run ./...
|
|
|