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.
1 parent ad76fa2 commit 9bbf114Copy full SHA for 9bbf114
.github/workflows/build-docs.yaml
@@ -0,0 +1,40 @@
1
+name: Build API docs
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches: ["main"]
7
+ pull_request:
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: ["3.11"]
15
+ fail-fast: false
16
17
+ steps:
18
+ - uses: actions/checkout@v3
19
20
+ - name: Set up Python ${{ matrix.python-version }}
21
+ uses: actions/setup-python@v4
22
+ with:
23
+ python-version: ${{ matrix.python-version }}
24
25
+ - name: Upgrade pip
26
+ run: python -m pip install --upgrade pip
27
28
+ - name: Install Quarto
29
+ uses: quarto-dev/quarto-actions/setup@v2
30
31
+ version: 1.3.340
32
33
+ - name: Install dependencies
34
+ run: |
35
+ cd docs
36
+ make deps
37
38
+ - name: Build site
39
40
+ make site
0 commit comments