We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 48eb80b + d3552bd commit b4035fdCopy full SHA for b4035fd
3 files changed
.github/workflows/analysis.yml
@@ -18,6 +18,21 @@ jobs:
18
steps:
19
- uses: actions/checkout@v4
20
21
+ - name: Install Doxygen
22
+ run: sudo apt-get update && sudo apt-get install -y doxygen
23
+
24
+ - name: Create Doxygen Output Directory
25
+ run: mkdir -p docs/doxygen
26
27
+ - name: Generate Doxygen Documentation
28
+ run: doxygen Doxyfile
29
30
+ - name: Upload Doxygen Documentation
31
+ uses: actions/upload-artifact@v4
32
+ with:
33
+ name: doxygen-html-docs
34
+ path: docs/doxygen/html
35
36
- name: Configure CMake
37
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DENABLE_ASAN=ON -DENABLE_MSAN=ON
38
0 commit comments