From 102fd2914b93b59887607d0c96088c7a74882e88 Mon Sep 17 00:00:00 2001 From: jkaeske Date: Thu, 28 Dec 2023 14:16:56 +0100 Subject: [PATCH] Update coverage report format in CI workflow --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e37bf84..105cfed 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,9 +23,11 @@ jobs: pip install tox - name: Run tests with tox - run: tox -e py${{ matrix.python-version }} -- --cov=django_i18n_lint --cov-report html + run: tox -e py${{ matrix.python-version }} -- --cov=django_i18n_lint --cov-report=xml - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 + with: + file: ./coverage.xml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}