From a4a0d02d2c364e548de63271ef4ae68bc052f70a Mon Sep 17 00:00:00 2001 From: Michael Roytman Date: Thu, 27 Jun 2024 10:03:14 -0400 Subject: [PATCH] test: fix coverage CI action (#94) This commit fixes the coverage CI action to use the proper Django version to ensure that it runs successfully in CI. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee80087..1522259 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: run: tox - name: Run coverage - if: matrix.python-version == '3.8' && matrix.toxenv == 'django40' + if: matrix.python-version == '3.8' && matrix.toxenv == 'django42' uses: py-cov-action/python-coverage-comment-action@v3 with: GITHUB_TOKEN: ${{ github.token }}