github.com/lauslim12/expert-systems@v0.0.0-20221115131159-018513aad29c/Makefile (about) 1 .PHONY: start 2 start: 3 go run ./cmd/expert-systems/main.go 4 5 .PHONY: build 6 build: 7 go build -v -o expert-systems ./cmd/expert-systems/main.go 8 9 .PHONY: format 10 format: 11 test -z $(gofmt -l .) 12 13 .PHONY: test 14 test: 15 go test -v -race -cover ./... ./... 16 17 .PHONY: e2e 18 e2e: 19 sh ./scripts/e2e-testing.sh