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.
2 parents dfb3ed4 + 2df0a73 commit 90bd40aCopy full SHA for 90bd40a
.github/workflows/docs.yml
@@ -0,0 +1,34 @@
1
+name: Build Docs
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
+ tags:
8
+ - '*'
9
10
+jobs:
11
+ build-deploy-docs:
12
+ name: Docs
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Cancel Previous Runs
16
+ uses: styfle/cancel-workflow-action@0.12.1
17
+ with:
18
+ access_token: ${{ github.token }}
19
20
+ - uses: actions/checkout@v3
21
22
+ - uses: actions/setup-python@v4
23
24
+ python-version: "3.11"
25
+ cache: 'pip'
26
27
+ - name: Create venv and install deps
28
+ run: |
29
+ pip install --upgrade pip wheel
30
+ pip install -r docs/requirements.txt
31
32
+ - name: Build Docs
33
34
+ make -C docs
docs/requirements.txt
@@ -1,2 +1,11 @@
+bed_reader
+click
+cyvcf2
jupyter-book
-sphinx-click
+msprime
+pysam
+sgkit
+sphinx-click
+tabulate
+tqdm
+zarr>=2.17
0 commit comments