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.
build.yml
1 parent 13fc4f2 commit 1e4ac70Copy full SHA for 1e4ac70
.github/workflows/build.yml
@@ -95,3 +95,23 @@ jobs:
95
source-dir: ${{ matrix.package }}
96
cxx-compiler: cl
97
run-build: true
98
+
99
+ docs:
100
+ runs-on: ubuntu-latest
101
+ strategy:
102
+ matrix:
103
+ package: [error]
104
+ steps:
105
+ - name: Checkout repository
106
+ uses: actions/checkout@v3.5.3
107
108
+ - name: Install requirements
109
+ run: |
110
+ sudo apt-get install -y doxygen
111
112
+ - name: Configure and build documentation
113
+ uses: threeal/cmake-action@v1.2.0
114
+ with:
115
+ source-dir: ${{ matrix.package }}
116
+ options: BUILD_DOCS=ON
117
+ run-build: true
0 commit comments