-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check out antsiubll-docutils, and clean up nox workflow (#448)
* Integrate antsibull-docutils into CI. * Clean up nox workflow. * Remove unnecessary expression. Co-authored-by: Maxwell G <[email protected]> --------- Co-authored-by: Maxwell G <[email protected]>
- Loading branch information
1 parent
0c1c230
commit 75c2b9e
Showing
2 changed files
with
12 additions
and
5 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 |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: antsibull | ||
working-directory: ansible-build-data | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
|
@@ -31,17 +31,17 @@ jobs: | |
python-versions: "3.12" | ||
name: "Run nox ${{ matrix.session }} session" | ||
steps: | ||
- name: Check out antsibull | ||
- name: Check out ansible-build-data | ||
uses: actions/checkout@v4 | ||
with: | ||
path: antsibull | ||
path: ansible-build-data | ||
- name: Setup nox | ||
uses: wntrblm/[email protected] | ||
with: | ||
python-versions: "${{ matrix.python-versions }}" | ||
- name: Set up nox environments | ||
run: | | ||
OTHER_ANTSIBULL_MODE=git nox -v -e "${{ matrix.session }}" ${{ matrix.codecov && 'coverage' || '' }} --install-only | ||
nox -v -e "${{ matrix.session }}" --install-only | ||
- name: "Run nox -e ${{ matrix.session }}" | ||
run: | | ||
OTHER_ANTSIBULL_MODE=git nox -v -e "${{ matrix.session }}" --reuse-existing-virtualenvs --no-install | ||
nox -v -e "${{ matrix.session }}" --reuse-existing-virtualenvs --no-install |