From e7f316ea6e984f62e6bcfbdaa7fbe3089b50fc25 Mon Sep 17 00:00:00 2001 From: Yar Kravtsov Date: Sat, 24 May 2025 11:37:13 +0300 Subject: [PATCH] ci: update test command to include all packages in CI and release workflows --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3214e89..7888d6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: run: go vet ./... - name: Test - run: go test -v -race -coverprofile=coverage.out ./test + run: go test -v -race -coverprofile=coverage.out ./ - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 67b9a24..05d4294 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: go-version: '1.24' - name: Run tests - run: go test ./test + run: go test ./ - name: Run GoReleaser uses: goreleaser/goreleaser-action@v6