Fix incognito mode when there are no tokens (#878) #3206
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install | |
shell: bash -l {0} | |
run: source continuous_integration/scripts/install.sh | |
- name: Install documentation-building requirements | |
shell: bash -l {0} | |
run: | | |
set -vxeuo pipefail | |
python -m pip install .[dev] | |
python -m pip list | |
- name: Build Docs | |
shell: bash -l {0} | |
run: make -C docs/ html |