15 lines
172 B
Makefile
15 lines
172 B
Makefile
.PHONY: build test format lint validate
|
|
|
|
build:
|
|
swift build
|
|
|
|
test:
|
|
swift test
|
|
|
|
format:
|
|
sh Scripts/format.sh
|
|
|
|
lint:
|
|
sh Scripts/lint.sh
|
|
|
|
validate: format lint build test
|