linsk/Makefile
2023-09-01 16:40:56 +01:00

14 lines
No EOL
281 B
Makefile

test:
go test ./... -v
lint-deps:
curl https://raw.githubusercontent.com/AlexSSD7/aslint/master/lint-deps.sh | bash
lint:
./bin/golangci-lint run -c bin/.golangci.yml
security-check-deps:
go install github.com/securego/gosec/v2/cmd/gosec@latest
security-check:
gosec ./...