Skip to content

Commit 3f18111

Browse files
strkandreynering
authored andcommitted
Add "check" alias for testing
Follows GNU Coding Standards, see https://www.gnu.org/prep/standards/html_node/Standard-Targets.html#Standard-Targets
1 parent 1b962ba commit 3f18111

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ lint:
6262
test:
6363
for PKG in $(PACKAGES); do go test -cover -coverprofile $$GOPATH/src/$$PKG/coverage.out $$PKG || exit 1; done;
6464

65+
# As for GNU Coding Standard
66+
check: test
67+
6568
.PHONY: install
6669
install: $(BIN)/$(EXECUTABLE)
6770
cp $< $(GOPATH)/bin/

0 commit comments

Comments
 (0)