Skip to content

Commit e3e60be

Browse files
committed
Merge branch 'f_2511' of github.com:x1101/ansible-documentation into f_2511
2 parents 4b24f43 + ebf170c commit e3e60be

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/reusable-nox.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
include:
14-
# Inputs:
14+
# matrix:
1515
# session: name of session
1616
# python-versions: comma-separated list of Python versions to install
1717
# extra-args (optional): extra arguments to pass to nox session.
18-
- session: static
18+
- session: "static"
1919
python-versions: "3.12"
20-
- session: formatters_check
20+
- session: "formatters_check"
2121
python-versions: "3.12"
22-
- session: typing
22+
- session: "typing"
2323
python-versions: "3.12"
24-
- session: spelling
24+
- session: "spelling"
2525
python-versions: "3.12"
2626
- session: checkers(rstcheck)
2727
python-versions: "3.12"
@@ -43,18 +43,18 @@ jobs:
4343
- name: Setup nox
4444
uses: wntrblm/[email protected]
4545
with:
46-
python-versions: "${{ inputs.python-versions }}"
46+
python-versions: "${{ matrix.python-versions }}"
4747

4848
- name: Graft ansible-core
4949
uses: ansible-community/github-action-run-nox@v1
5050
with:
5151
sessions: clone-core
52-
force-pythons: "${{ inputs.python-versions }}"
52+
force-pythons: "${{ matrix.python-versions }}"
5353

5454
- name: "Run nox session"
5555
uses: ansible-community/github-action-run-nox@v1
5656
with:
57-
sessions: "${{ matrix.sessions }}"
58-
extra-args: ${{ inputs.extra-args || '' }}
59-
force-pythons: "${{ inputs.python-versions }}"
57+
sessions: "${{ matrix.session }}"
58+
extra-args: "${{ matrix.extra-args || '' }}"
59+
force-pythons: "${{ matrix.python-versions }}"
6060

0 commit comments

Comments
 (0)