]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blobdiff - Makefile
.github: update upstream actions to latest version
[nsscash/nsscash.git] / Makefile
index b76c74eefedbe023ba923c4f027a473fd7ea60b8..39f5818f293c2e652345f02afab0bb3d8cc058a1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,7 @@
 all:
-       go generate ./...
-       go vet ./...
+       go generate
+       go vet
        go build
-       go test ./...
        $(MAKE) --no-print-directory -C nss all
 
 clean:
@@ -11,6 +10,7 @@ clean:
 
 test:
        go build # we need ./nsscash
+       go test
        $(MAKE) --no-print-directory -C nss test
 
 .PHONY: all clean test