We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c49fb3b commit f2b4d63Copy full SHA for f2b4d63
.github/workflows/tests.yml
@@ -74,13 +74,13 @@ jobs:
74
75
- name: Run Nox
76
run: |
77
- uvx nox@2025.11.12 --python=${{ matrix.python }}
+ uvx nox@2025.11.12 --session=${{ matrix.session }}
78
79
- name: Upload coverage data
80
- if: always() && matrix.session == 'tests'
+ if: always() && contains(matrix.session, 'tests')
81
uses: "actions/upload-artifact@v6"
82
with:
83
- name: coverage-data-${{ matrix.os }}-${{ matrix.python }}
+ name: coverage-data-${{ matrix.session }}
84
path: ".coverage.*"
85
include-hidden-files: true
86
0 commit comments