diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5d86b92..019f8aa2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,6 +35,15 @@ jobs: run: | go work init make test + - name: Test Coverage + run: | + make test-cover + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + with: + files: cover.out test-integration: runs-on: ubuntu-latest