-
Notifications
You must be signed in to change notification settings - Fork 13
44 lines (34 loc) · 1002 Bytes
/
test_doc.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
44
name: "Test and deploy"
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10.5
uses: actions/setup-python@v2
with:
python-version: 3.10.5
- name: Install dependencies
run: |
pip install -e .[doc]
sudo apt-get install build-essential graphviz libgraphviz-dev
pip install --upgrade pygraphviz graphviz
- name: Test with pytest
run:
py.test --cov macapype --ignore=examples/ --ignore=run_examples/
- name: Build the Doc 🔧
run: |
cd docs
make clean
make html
touch build/html/.nojekyll
- name: Deploy Github Pages 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/build/html/
clean: true
ssh-key: ${{ secrets.DEPLOY_KEY }}