From 54c1d56710b83c73134792e6f5257e3c426e0953 Mon Sep 17 00:00:00 2001 From: Don Naro Date: Thu, 17 Aug 2023 10:58:00 +0100 Subject: [PATCH] strict python warnings --- .github/workflows/reusable-build-docsite.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/reusable-build-docsite.yaml b/.github/workflows/reusable-build-docsite.yaml index dae260a1..ec0dd273 100644 --- a/.github/workflows/reusable-build-docsite.yaml +++ b/.github/workflows/reusable-build-docsite.yaml @@ -12,12 +12,16 @@ jobs: steps: - name: Check out the repository uses: actions/checkout@v3 - - name: Set up nox - uses: wntrblm/nox@2023.04.22 + - name: Set up Python + uses: actions/setup-python@v3 with: - python-versions: "3.11" - - name: Build the docsite with nox - run: nox -e build + python-version: "3.11" + - name: Pip install nox + run: python -Im pip install nox + - name: Generate assets for the docs landing page + env: + PYTHONWARNINGS: error + run: python -Im nox -s build - name: Create a downloadable archive of docs build uses: actions/upload-artifact@v3 with: