diff --git a/.github/workflows/antsibull-build.yml b/.github/workflows/antsibull-build.yml index d66e7ce062..b4b00e2862 100644 --- a/.github/workflows/antsibull-build.yml +++ b/.github/workflows/antsibull-build.yml @@ -53,6 +53,13 @@ jobs: ref: main path: antsibull-changelog + - name: Check out antsibull-docutils + uses: actions/checkout@v4 + with: + repository: ansible-community/antsibull-docutils + ref: main + path: antsibull-docutils + - name: Pre-create build directory run: mkdir -p antsibull/build diff --git a/.github/workflows/nox.yml b/.github/workflows/nox.yml index a6ac83ec79..8b8bccad96 100644 --- a/.github/workflows/nox.yml +++ b/.github/workflows/nox.yml @@ -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/nox@2024.04.15 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