Skip to content

Commit 1fa218c

Browse files
committed
build: run unit tests as part of the check suite
Signed-off-by: Mark Sagi-Kazar <[email protected]>
1 parent 2190736 commit 1fa218c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
LICENSEI_VERSION = 0.1.0
22
GOLANGCI_VERSION = 1.16.0
33

4-
all: license fmt vet
4+
all: license fmt vet test
55

66
.PHONY: license
77
license:
@@ -15,6 +15,9 @@ fmt:
1515
vet:
1616
go vet ./...
1717

18+
test:
19+
go test ./...
20+
1821
test-integration:
1922
cd tests && go test -integration -v ./...
2023

0 commit comments

Comments
 (0)