Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ jobs:
run: cd web-ui/backend && go vet ./...

- name: Test
run: cd web-ui/backend && go test ./...
# -race because the alerter and agent paths are deliberately
# concurrent and their regression tests pin interleavings;
# -count=1 because the restored build cache would otherwise
# replay cached passes instead of running anything.
run: cd web-ui/backend && go test -race -count=1 ./...

- name: Build
run: cd web-ui/backend && go build ./cmd/sysmon-web
Expand Down
Loading