-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (32 loc) · 1.01 KB
/
doc_builds.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Add Check for the HDMF-Common-Schema and NWB-schema doc builds
on:
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Clone HDMF-Common-Schema and Install Requirements
run:
git clone https://github.com/hdmf-dev/hdmf-common-schema.git
cd hdmf-common-schema
python -m pip install -r requirements-doc.txt
- name: Build HDMF-Common-Schema Docs
run:
cd docs
make clean
make html
- name: Clone NWB-Schema and Install Requirements
run:
git clone https://github.com/NeurodataWithoutBorders/nwb-schema.git
cd nwb-schema
python -m pip install -r requirements-doc.txt
- name: Build NWB-Schema Docs
run:
cd docs
make clean
make html