Skip to content

Commit 1458934

Browse files
author
Andreas Auernhammer
committed
ci: add go-fuzz tag to build and test command
This commit adds `-tag gofuzz` to the build and test commands to ensure that also fuzzing code compiles and any testing using fuzzing works.
1 parent a8644fa commit 1458934

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.cirrus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ task:
1212
- diff -au <(go vet .) <(printf "")
1313
get_script:
1414
- go get ./...
15-
- go build ./...
16-
test_script: go test ./...
15+
- go build -tags gofuzz ./...
16+
test_script: go test -tags gofuzz ./...
1717

0 commit comments

Comments
 (0)