From e3604e558f6bd4dccc96b9bd071223fd8506888f Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Sun, 18 Dec 2022 23:01:59 -0800 Subject: Makefile: Simplify (#62) This simplifies the Makefile significantly, borrowing patterns we've used in other projects. Namely: - Set GOBIN to a bin subdirectory so that we can `go install` dependencies into it. - Use a shared TEST_FLAGS for `make test` and `make cover`. Without this, we're not running with data race detection in CI. - Build lint step out of separate golint and staticcheck steps. In the future, a gofmt step may also be added. - Move tools dependencies into an unpublished subpackage. Note: I didn't mess with the 'clean' and 'run' targets at the bottom of the file even though they're not necessary to avoid a merge conflict with #60. --- tools/doc.go | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tools/doc.go (limited to 'tools/doc.go') diff --git a/tools/doc.go b/tools/doc.go new file mode 100644 index 0000000..c94c1a8 --- /dev/null +++ b/tools/doc.go @@ -0,0 +1,3 @@ +// Package tools specifies the development-time +// dependencies of sally. +package tools -- cgit v1.2.3