diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 6cdf75b..27b17ff 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -26,7 +26,10 @@ jobs: - uses: actions/checkout@v3 - name: Integration Test - run: go test -v test/integration/integration_test.go + run: go test -v test/integration/integration_test.go -coverprofile=coverage.txt -covermode=atomic env: INPUT_PUBLISH: false - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Upload coverage + run: bash <(curl -s https://codecov.io/bash) \ No newline at end of file