diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index dcb310a6..b7d97f91 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -22,3 +22,8 @@ jobs: - name: Test with pytest and generate coverage report run: | python -m pytest --cov=application --cov=scripts --cov=extensions --cov-report xml:/tmp/coverage.xml + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} +