From 8e717608c53c6991a1c7a27d096d392a2b7ae09e Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sat, 26 Jul 2025 16:13:52 +0200 Subject: [PATCH] Update Go test commands to include build tags --- .github/workflows/go_test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go_test.yaml b/.github/workflows/go_test.yaml index a9e39f6..221bd56 100644 --- a/.github/workflows/go_test.yaml +++ b/.github/workflows/go_test.yaml @@ -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 \ No newline at end of file + run: go test -tags=test -race ./... -v \ No newline at end of file