We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9da4f1a commit 416d7f5Copy full SHA for 416d7f5
.github/workflows/build-faq.yml
@@ -25,10 +25,13 @@ jobs:
25
uses: actions/setup-python@v5
26
with:
27
python-version: '3.x'
28
- - name: Install MkDocs
29
- run: pip install mkdocs
+ - name: Install MkDocs and pre-commit
+ run: pip install mkdocs pre-commit
30
- name: Build docs into faq
31
run: mkdocs build --config-file mkdocs_remote.yml --site-dir faq
32
+ - name: Run pre-commit
33
+ run: |
34
+ pre-commit run --all-files || true
35
- name: Commit built FAQ
36
id: commit
37
run: |
0 commit comments