chore(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.3.0 #481
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: Test book generation | |
on: | |
push: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
verify: | |
name: Verify docs and PDF generation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/[email protected] | |
- name: Python setup | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install requirements | |
run: pip install -r requirements.txt | |
- name: Test generate docs | |
run: mkdocs build | |
- name: Install PDF requirements | |
run: pip install -r pdf_requirements.txt | |
- name: Inject plugin | |
run: bin/inject_pdf.sh | |
- name: Test generate PDF & docs | |
run: mkdocs build | |
- name: Provide PDF as artefact of build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pdf-version | |
path: ./site/pdf/lpic2book.pdf | |