From 83ce4a538ab13f11a92f245368cd5dae6b942046 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 4 Sep 2023 14:23:44 +0100 Subject: [PATCH] Update pytest.yml --- .github/workflows/pytest.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index dcb310a..b7d97f9 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 }} +