Files
core/vendor/github.com/shoenig/go-m1cpu/Makefile
T
Ingo Oppermann aef1b7c9a2 Fix #10
2023-04-11 15:04:31 +02:00

13 lines
157 B
Makefile

SHELL = bash
default: test
.PHONY: test
test:
@echo "--> Running Tests ..."
@go test -v -race ./...
vet:
@echo "--> Vet Go sources ..."
@go vet ./...