From d69b78b962e1e1922c4235b5574b95294fda9fe7 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Thu, 4 Apr 2024 16:02:21 +0200 Subject: [PATCH] typo --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 871441914..08fd678de 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -93,12 +93,12 @@ jobs: - name: Run tests run: pytest -m "not a11y" --color=yes --cov --cov-report=xml env: - COVERAGE_FILE: ".coverage.${{ matrix.python_version }}.${{ matrix.os }}" + COVERAGE_FILE: ".coverage.${{ matrix.python-version }}.${{ matrix.os }}" - name: Store coverage file uses: actions/upload-artifact@v4 with: - name: coverage-${{ matrix.python_version }}-${{ matrix.os }} - path: .coverage.${{ matrix.python_version }}.${{ matrix.os }} + name: coverage-${{ matrix.python-version }}-${{ matrix.os }} + path: .coverage.${{ matrix.python-version }}.${{ matrix.os }} - name: Upload to Codecov if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest' && matrix.sphinx-version == 'dev' uses: codecov/codecov-action@v4