From 11bc26799f1e878b32d838e16cbfab9b1db156cd Mon Sep 17 00:00:00 2001 From: Yogendra Sharma Date: Tue, 8 Oct 2024 14:43:29 +0200 Subject: [PATCH] Remove occurrences of matrix.python-version.key || in ci.yml --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4af8289..0df57e2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: - uses: astral-sh/setup-uv@v3 - name: Test lite package - run: uvx nox -s lite-${{ matrix.python-version.key || matrix.python-version }} --verbose + run: uvx nox -s lite-${{ matrix.python-version }} --verbose check-full: needs: [check-lite] @@ -87,10 +87,10 @@ jobs: - name: Run doctests on Python 3.11 if: matrix.python-version == 3.11 - run: nox -s doctests-${{ matrix.python-version.key || matrix.python-version }} --verbose + run: nox -s doctests-${{ matrix.python-version }} --verbose - name: Test package and generate coverage report - run: nox -s coverage-${{ matrix.python-version.key || matrix.python-version }} --verbose + run: nox -s coverage-${{ matrix.python-version }} --verbose - name: Upload coverage report uses: codecov/codecov-action@v4.6.0