From 14ce023bfb734226b341949d6f50a17d88f37959 Mon Sep 17 00:00:00 2001 From: Abdulsametileri Date: Sun, 6 Aug 2023 07:15:35 +0300 Subject: [PATCH] chore: add codeconv to the integration test step --- .github/workflows/integration-test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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