We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16c41ea commit 260a824Copy full SHA for 260a824
1 file changed
.github/workflows/cd-docs.yml
@@ -5,6 +5,7 @@ on:
5
# Uncomment these lines before merge
6
# branches:
7
# - master
8
+ pull_request:
9
permissions:
10
contents: write
11
jobs:
@@ -18,6 +19,7 @@ jobs:
18
19
run: |
20
git config user.name github-actions[bot]
21
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
22
+ if: (github.event_name != 'pull_request')
23
24
- name: Set up Python 3.10
25
uses: actions/setup-python@v5
@@ -43,3 +45,8 @@ jobs:
43
45
44
46
- name: Deploy to GitHub Pages
47
run: mkdocs gh-deploy --force
48
49
+
50
+ - name: Build docs to check for errors
51
+ run: mkdocs build --verbose
52
+ if: (github.event_name == 'pull_request')
0 commit comments