From 67b947c31be3111b1610d0a2baf627006b58e557 Mon Sep 17 00:00:00 2001 From: Rolf Krahl Date: Mon, 19 Feb 2024 17:43:45 +0100 Subject: [PATCH] Fixup 8f35940: need to run doc/src/conf.py before doc8-check now --- .github/workflows/rst-lint.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/rst-lint.yaml b/.github/workflows/rst-lint.yaml index b9b239f..9205803 100644 --- a/.github/workflows/rst-lint.yaml +++ b/.github/workflows/rst-lint.yaml @@ -11,6 +11,17 @@ jobs: steps: - name: Check out repository code uses: actions/checkout@v4 + - name: Set up Python 3.11 + uses: actions/setup-python@v4 + with: + python-version: 3.11 + - name: Install dependencies + run: | + pip install setuptools packaging git-props suds + - name: Run conf.py + run: | + python setup.py build + python doc/src/conf.py - name: doc8-check uses: deep-entertainment/doc8-action@v4 with: