forked from landlab/landlab
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 1.25 KB
/
docs.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
43
name: Documentation
on: [push, pull_request]
jobs:
build:
name: Build documentation
# We want to run on external PRs, but not on our own internal PRs as they'll be run
# by the push to the branch. Without this if check, checks are duplicated since
# internal PRs match both the push and pull_request events.
if:
github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
github.repository
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.8
channels: conda-forge
channel-priority: true
- name: Show conda installation info
run: |
conda info
conda list
- name: Install dependencies
run: |
conda install mamba
mamba install --file=requirements.txt
pip install -r requirements-docs.txt
pip install -e .
- name: Build documentation
run: make -C docs clean html