diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8d754db..dd4c8d6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,15 +27,13 @@ jobs: go test -coverprofile=coverage.out -covermode=atomic -cover -json ./... | gotestsum --junitfile tests.xml - name: Upload test results to Codecov - if: ${{ !cancelled() }} uses: codecov/test-results-action@v1 with: - files: tests.xml token: ${{ secrets.CODECOV_TOKEN }} + files: tests.xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v4.1.1 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.out - verbose: true