We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 587b659 commit 6fd4c3cCopy full SHA for 6fd4c3c
1 file changed
.github/workflows/base.yml
@@ -36,7 +36,7 @@ jobs:
36
37
- name: List 'tests' nox sessions and required python versions
38
id: set-matrix
39
- run: echo "::set-output name=matrix::$(nox --json -l -s tests -v)"
+ run: echo "matrix=$(nox --json -l -s tests -v)" >> $GITHUB_OUTPUT
40
41
outputs:
42
matrix: ${{ steps.set-matrix.outputs.matrix }} # save nox sessions list to outputs
@@ -100,7 +100,7 @@ jobs:
100
101
# Share ./docs/reports so that they can be deployed with doc in next job
102
- name: Share reports with other jobs
103
- # if: matrix.nox_session == '...': not needed, if empty won't be shared
+ if: runner.os == 'Linux'
104
uses: actions/upload-artifact@v4.3.0
105
with:
106
name: reports_dir
0 commit comments