From e222ecdab5106a93c3d1aede818588b9d0c31ba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gerdau?= Date: Tue, 28 May 2024 15:29:30 +0200 Subject: [PATCH] fix: missing coverage for tenant module --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 84d7812..566dd66 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: go-version: ${{ matrix.go }} check-latest: true - name: Test - run: go test -v -race -coverprofile="coverage.txt" -covermode=atomic $(go list ./... | grep -v examples) + run: go test -v -race -coverprofile="coverage.txt" -covermode=atomic $(go list -m | grep -v examples) - name: Upload code coverage uses: codecov/codecov-action@v4 if: matrix.go == '1.22'