diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 4ed55ba..79932b6 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -16,6 +16,10 @@ on: - 'go.*' - '.github/**' - 'codecov.yml' +env: + TEST_HOST: ${{ secrets.TEST_HOST }} + TEST_SMTPAUTH_USER: ${{ secrets.TEST_USER }} + TEST_SMTPAUTH_PASS: ${{ secrets.TEST_PASS }} jobs: run: runs-on: ${{ matrix.os }} @@ -29,7 +33,7 @@ jobs: - name: Run Tests run: | - go test -race --coverprofile=coverage.coverprofile --covermode=atomic ./... + go test -v -race --coverprofile=coverage.coverprofile --covermode=atomic ./... - name: Upload coverage to Codecov if: success() && matrix.go == 1.18 && matrix.os == 'ubuntu-latest'