[FIX] Widget shortcuts now work even if menu bar is not visible #394
Workflow file for this run
This file contains hidden or 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 : Run Docs Build | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 5 | |
env: | |
PIP_NO_PIP_VERSION_CHECK: 1 | |
PIP_CACHE_DIR: .pip-cache | |
PIP_PREFER_BINARY: 1 | |
strategy: | |
fail-fast: False | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
python: "3.10" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Setup Pip Cache | |
uses: actions/cache@v4 | |
with: | |
path: .pip-cache | |
key: ${{ runner.os }}-py-${{ matrix.python }}-pip-${{ hashFiles('setup.*', '.github/workflows/run-docs-build.yml') }} | |
restore-keys: | | |
${{ runner.os }}-py-${{ matrix.python }}-pip | |
- name: Install Doc Deps | |
run: python -m pip install -r doc/requirements-rtd.txt | |
- name: Install | |
run: python -m pip install -e . | |
- name: List Build Env | |
run: pip list --format=freeze | |
- name: Build Docs | |
run: (cd doc; make SPHINXOPTS="-W --keep-going" html) |