Update Go test commands to include build tags

This commit is contained in:
2025-07-26 16:13:52 +02:00
parent 7087f65855
commit 8e717608c5

View File

@@ -27,6 +27,6 @@ jobs:
go-version: "1.23"
cache: true
- name: Run Tests
run: go test ./... -v
run: go test -tags=test ./... -v
- name: Run Tests with Race Detector
run: go test -race ./... -v
run: go test -tags=test -race ./... -v