We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54b7f27 commit 2ed52fbCopy full SHA for 2ed52fb
1 file changed
.github/workflows/build-docs.yml
@@ -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