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