File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,10 @@ jobs:
23
23
- uses : actions/checkout@v3
24
24
- uses : henryiii/nox@henryiii/feat/json
25
25
- id : set-matrix
26
- run : |
27
- MATRIX=$(
28
- nox --json -l | jq -c '[.[].session]'
29
- )
30
- echo "session=$MATRIX" | tee --append $GITHUB_OUTPUT
26
+ run : echo session=$(nox --json -l | jq -c '[.[].session]') | tee --append $GITHUB_OUTPUT
31
27
32
28
checks :
29
+ name : Session ${{ matrix.session }} on ${{ matrix.runs-on }}
33
30
needs : [generate-jobs]
34
31
runs-on : ${{ matrix.runs-on }}
35
32
strategy :
42
39
session : test(hello-cmake-package)
43
40
- runs-on : windows-latest
44
41
session : dist(hello-cmake-package)
45
-
46
- name : Session ${{ matrix.session }} on ${{ matrix.runs-on }}
47
-
48
42
steps :
49
43
- uses : actions/checkout@v3
50
44
You can’t perform that action at this time.
0 commit comments