Skip to content

Commit f6a9284

Browse files
committed
feat(kubectl-trace): execute tests in CI
Signed-off-by: Lorenzo Fontana <[email protected]>
1 parent f842698 commit f6a9284

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ go:
77
services:
88
- docker
99
script:
10+
- make test
1011
- make _output/bin/kubectl-trace
1112
- ./hack/release-image.sh

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,6 @@ image/latest:
4848
$(DOCKER) tag $(IMAGE_BPFTRACE_COMMIT) $(IMAGE_BPFTRACE_LATEST)
4949
$(DOCKER) push $(IMAGE_BPFTRACE_LATEST)
5050

51+
.PHONY: test
52+
test:
53+
$(GO) test -v -race ./...

0 commit comments

Comments
 (0)