Skip to content

Commit 175426a

Browse files
committed
fix
1 parent 2353f07 commit 175426a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/clang_test.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,27 @@ jobs:
4141
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4242
with:
4343
lfs: true
44+
45+
- name: Install dependencies
46+
run: |
47+
sudo apt-get update
48+
sudo apt-get install -y doxygen
49+
pip install -r docs/requirements.txt
50+
51+
- name: Build API
52+
run: |
53+
cd ./apidoc
54+
doxygen
55+
cd -
56+
57+
- name: Build Docs
58+
run: |
59+
cd docs
60+
make html
61+
mkdir -p /tmp/site
62+
cp -r ./_build/html/* /tmp/site/
63+
cd -
64+
4465
- name: Build Paimon
4566
shell: bash
4667
env:

0 commit comments

Comments
 (0)