-
Notifications
You must be signed in to change notification settings - Fork 563
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now that the docs checkers are integrated into the noxfile, we can use the nox session in CI instead of having to maintain separate CI configurations for these jobs.
- Loading branch information
Showing
2 changed files
with
7 additions
and
48 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
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 |
---|---|---|
|
@@ -19,6 +19,10 @@ jobs: | |
python-versions: "3.11" | ||
- session: spelling | ||
python-versions: "3.11" | ||
- session: "checkers(rstcheck)" | ||
python-versions: "3.11" | ||
- session: "checkers(docs-build)" | ||
python-versions: "3.11" | ||
name: "Run nox ${{ matrix.session }} session" | ||
steps: | ||
- name: Check out repo | ||
|
@@ -27,6 +31,9 @@ jobs: | |
uses: wntrblm/[email protected] | ||
with: | ||
python-versions: "${{ matrix.python-versions }}" | ||
- name: Graft ansible-core | ||
run: | | ||
nox -e clone-core | ||
- name: "Run nox -e ${{ matrix.session }}" | ||
run: | | ||
nox -e "${{ matrix.session }}" |