1
0
Fork 0
mirror of https://github.com/Luzifer/go-openssl.git synced 2024-10-18 06:14:21 +00:00
go-openssl/Makefile

24 lines
345 B
Makefile
Raw Normal View History

default:
benchmark:
go test -bench=. ./...
lint:
golangci-lint run ./...
test:
go test -cover -v ./...
# -- Vulnerability scanning --
trivy:
trivy fs . \
--dependency-tree \
--exit-code 1 \
--format table \
--ignore-unfixed \
--quiet \
--scanners config,license,secret,vuln \
--severity HIGH,CRITICAL \
--skip-dirs docs