forked from jonescompneurolab/hnn-core
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (31 loc) · 875 Bytes
/
linkcheck.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
name: Linkcheck
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: test
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash -el {0}
run: |
sudo apt-get install pandoc
python -m pip install --upgrade pip
pip install numpy matplotlib scipy NEURON
pip install sphinx-gallery sphinx sphinx_bootstrap_theme sphinx-copybutton numpydoc pillow nbsphinx
pip install '.[gui]'
- name: Linkcheck
shell: bash -el {0}
run: |
make -C doc linkcheck