Firmware retraction: Fix and extend zhop feature #71
Workflow file for this run
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: Docs test | |
on: | |
pull_request: | |
paths: | |
- docs/** | |
- .github/workflows/ci-docs_test.yaml | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- uses: actions/cache@v4 | |
id: pip-cache | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ runner.os }}-pip-${{ hashFiles('docs/_kalico/mkdocs-requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
if: steps.pip-cache.outputs.cache-hit != 'true' | |
run: pip install -r docs/_kalico/mkdocs-requirements.txt | |
- name: Build MkDocs Pages | |
run: | | |
cd docs/ | |
mkdocs build -f _kalico/mkdocs.yml --strict |