diff options
| author | 2022-10-26 15:27:16 +0100 | |
|---|---|---|
| committer | 2022-12-11 13:46:53 +0000 | |
| commit | 79a2e875a9ec1fe768bcd3b3c88e49b4d294bd90 (patch) | |
| tree | 930b4087edbd2cd8bf00cbdfc0a79dfdddf72646 /.github/workflows/docs.yaml | |
| parent | Add a dry run step to lint & test CI (diff) | |
Matrix test both 3.10 and 3.11 in CI
Diffstat (limited to '.github/workflows/docs.yaml')
| -rw-r--r-- | .github/workflows/docs.yaml | 11 | 
1 files changed, 2 insertions, 9 deletions
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 6d6c9569..03e6bc96 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -1,15 +1,8 @@  name: Build Docs  on: -  push: -    branches: -      - main -  pull_request:    workflow_dispatch: - -concurrency: -  group: docs-deployment-${{ github.ref }} -  cancel-in-progress: true +  workflow_call:  jobs:    latest-build: @@ -25,7 +18,7 @@ jobs:          with:            dev: true            python_version: "3.11" -          install_args: "--extras async-rediscache" +          install_args: "--extras async-rediscache --only main --only doc"        - name: Generate HTML Site          run: sphinx-build -nW -j auto -b html docs docs/build  |