mirror of
https://github.com/Luzifer/preserve.git
synced 2024-11-08 22:30:05 +00:00
11 lines
212 B
Makefile
11 lines
212 B
Makefile
default: lint test
|
|
|
|
lint:
|
|
golangci-lint run --timeout=5m
|
|
|
|
publish:
|
|
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
|
|
bash golang.sh
|
|
|
|
test:
|
|
go test -cover -v ./...
|