-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove occurrences of matrix.python-version.key || in ci.yml (#517)
- Loading branch information
1 parent
502a448
commit 12f7b7d
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
|