Skip to content

Commit 50bd93b

Browse files
authored
chore: minor simplification
1 parent 93ec83f commit 50bd93b

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,10 @@ jobs:
2323
- uses: actions/checkout@v3
2424
- uses: henryiii/nox@henryiii/feat/json
2525
- 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
3127

3228
checks:
29+
name: Session ${{ matrix.session }} on ${{ matrix.runs-on }}
3330
needs: [generate-jobs]
3431
runs-on: ${{ matrix.runs-on }}
3532
strategy:
@@ -42,9 +39,6 @@ jobs:
4239
session: test(hello-cmake-package)
4340
- runs-on: windows-latest
4441
session: dist(hello-cmake-package)
45-
46-
name: Session ${{ matrix.session }} on ${{ matrix.runs-on }}
47-
4842
steps:
4943
- uses: actions/checkout@v3
5044
- uses: wntrblm/[email protected]

0 commit comments

Comments
 (0)