diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8f40b24..cca0d43 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -73,10 +73,7 @@ jobs: - name: Run test cover run: sh helper/test-cover.sh - - name: Upload to codecov - uses: codecov/codecov-action@v3 - with: - token: ${{ secrets.CODECOV_TOKEN }} - files: ./coverage.txt # optional - fail_ci_if_error: true # optional (default = false) - verbose: true # optional (default = false) + - name: Upload coverage to Codecov + run: bash <(curl -s https://codecov.io/bash) + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file