mirror of
https://github.com/Luzifer/korvike.git
synced 2024-11-08 07:20:07 +00:00
16 lines
282 B
Makefile
16 lines
282 B
Makefile
publish:
|
|
bash ./ci/build.sh
|
|
|
|
test:
|
|
cd functions && go test -cover -v
|
|
golangci-lint run ./...
|
|
|
|
trivy:
|
|
trivy fs . \
|
|
--dependency-tree \
|
|
--exit-code 1 \
|
|
--format table \
|
|
--ignore-unfixed \
|
|
--quiet \
|
|
--scanners misconfig,license,secret,vuln \
|
|
--severity HIGH,CRITICAL
|