-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sylvain MARIE
committed
Sep 26, 2024
1 parent
587b659
commit 6fd4c3c
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -36,7 +36,7 @@ jobs: | |
|
||
- name: List 'tests' nox sessions and required python versions | ||
id: set-matrix | ||
run: echo "::set-output name=matrix::$(nox --json -l -s tests -v)" | ||
run: echo "matrix=$(nox --json -l -s tests -v)" >> $GITHUB_OUTPUT | ||
|
||
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} # save nox sessions list to outputs | ||
|
@@ -100,7 +100,7 @@ jobs: | |
|
||
# Share ./docs/reports so that they can be deployed with doc in next job | ||
- name: Share reports with other jobs | ||
# if: matrix.nox_session == '...': not needed, if empty won't be shared | ||
if: runner.os == 'Linux' | ||
uses: actions/[email protected] | ||
with: | ||
name: reports_dir | ||
|