From 66333caebc13f79a44ec73f535df83847d3242fd Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Mon, 6 Feb 2023 09:51:14 -0800 Subject: [PATCH] Fixes all Python versions uploading to Codecov --- .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 74229ef60..f8da8c7b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -161,7 +161,7 @@ jobs: pipenv --python ${{ steps.setup-python.outputs.python-version }} run pytest -ra - name: Upload coverage to Codecov - if: matrix.python-version == ${{ env.DEFAULT_PYTHON_VERSION }} + if: ${{ matrix.python-version == env.DEFAULT_PYTHON_VERSION }} uses: codecov/codecov-action@v3 with: # not required for public repos, but intermittently fails otherwise