Skip to content

Commit 2ed52fb

Browse files
committed
wip
1 parent 54b7f27 commit 2ed52fb

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/build-docs.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build docs
2+
on:
3+
workflow_call:
4+
5+
jobs:
6+
build-docs:
7+
runs-on: ubuntu-latest
8+
- name: Checkout
9+
uses: actions/checkout@v4
10+
11+
- name: Setup PDM
12+
uses: pdm-project/setup-pdm@v4
13+
with:
14+
python-version: 3.12
15+
cache: true
16+
17+
- name: Install dependencies
18+
run: pdm install
19+
20+
- name: Build docs
21+
run: pdm docs

0 commit comments

Comments
 (0)