mirror of
https://github.com/BishopFox/sliver
synced 2026-06-08 10:29:05 +00:00
18 lines
166 B
Makefile
18 lines
166 B
Makefile
.PHONY: all
|
|
all: fmt lint test
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
./ci/fmt.sh
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
./ci/lint.sh
|
|
|
|
.PHONY: test
|
|
test:
|
|
./ci/test.sh
|
|
|
|
.PHONY: bench
|
|
bench:
|
|
./ci/bench.sh
|