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.
2 parents 217c00d + 4d283d3 commit cd2c3eaCopy full SHA for cd2c3ea
.github/workflows/pr_push.yml
@@ -116,6 +116,26 @@ jobs:
116
- name: Check clang-format
117
run: cmake --build build --target clang-format-check
118
119
+ DocsBuild:
120
+ name: Build docs
121
+ runs-on: ubuntu-latest
122
+
123
+ steps:
124
+ - name: Checkout repository
125
+ uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
126
127
+ - name: Install doxygen
128
+ run: |
129
+ sudo apt-get update
130
+ sudo apt-get install -y doxygen
131
132
+ - name: Install pip requirements
133
+ run: python3 -m pip install -r third_party/requirements.txt
134
135
+ - name: Build the documentation
136
+ working-directory: scripts
137
+ run: python3 generate_docs.py
138
139
Spellcheck:
140
uses: ./.github/workflows/spellcheck.yml
141
Build:
0 commit comments