CI Makefile
This commit is contained in:
parent
2f629bfae0
commit
b5d92fe7d7
1 changed files with 14 additions and 0 deletions
14
Makefile
Normal file
14
Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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 ./...
|
||||
Loading…
Add table
Add a link
Reference in a new issue