Add documentation for overriding QM attributes using drop-in files #147
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: MkDocs Build Check | |
on: | |
pull_request: | |
paths: | |
- 'docs/**' | |
- '**.md' | |
jobs: | |
mkdocs-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install MkDocs and dependencies | |
run: | | |
pip install \ | |
mkdocs \ | |
mkdocs-material \ | |
pymdown-extensions | |
- name: Build MkDocs site | |
run: mkdocs build -f docs/mkdocs.yml --strict |