add count flag to hopefully avoid cache issues

This commit is contained in:
Joel Wetzell
2026-03-02 12:47:01 -06:00
parent f68312ee84
commit 08308c1891

View File

@@ -34,7 +34,7 @@ jobs:
run: go mod tidy
- name: run tests
run: go test ./... -coverpkg "github.com/jwetzell/showbridge-go/..." -coverprofile coverage.out
run: go test ./... -count=1 -coverpkg "github.com/jwetzell/showbridge-go/..." -coverprofile coverage.out
- name: clean up coverage report
run: cat coverage.out | grep -v "github.com/jwetzell/showbridge-go/cmd" > coverage.nocmd.out