diff options
author | 2024-08-09 15:35:35 +0100 | |
---|---|---|
committer | 2024-08-09 15:42:03 +0100 | |
commit | a82df301315c9262ebeb39332ebdf9631b641db0 (patch) | |
tree | 4bc2cd1f26d5b6d5deffccdb539caf0b46a131de | |
parent | Add mkdocs-material documentation (diff) |
Update docs linting job
-rw-r--r-- | .github/workflows/lint-docs.yaml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/lint-docs.yaml b/.github/workflows/lint-docs.yaml index 77d5457..eceee94 100644 --- a/.github/workflows/lint-docs.yaml +++ b/.github/workflows/lint-docs.yaml @@ -10,6 +10,10 @@ jobs: with: submodules: recursive fetch-depth: 0 - - uses: jchristgit/sphinx-action@master + - name: Install Python Dependencies + uses: HassanAbouelela/actions/setup-python@setup-python_v1.6.0 with: - docs-folder: "docs/" + python_version: "3.12" + install_args: --only docs + - name: Build docs + run: poetry run task build-docs |