Skip to content

Commit 89a929c

Browse files
committed
ci: add a job in the build.yml workflow for generating documentation
1 parent 13fc4f2 commit 89a929c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,19 @@ jobs:
9595
source-dir: ${{ matrix.package }}
9696
cxx-compiler: cl
9797
run-build: true
98+
99+
docs:
100+
runs-on: ubuntu-latest
101+
steps:
102+
- name: Checkout repository
103+
uses: actions/checkout@v3.5.3
104+
105+
- name: Install requirements
106+
run: |
107+
sudo apt-get install -y doxygen
108+
109+
- name: Configure and build documentation
110+
uses: threeal/cmake-action@v1.2.0
111+
with:
112+
options: BUILD_DOCS=ON
113+
run-build: true

0 commit comments

Comments
 (0)