-
Notifications
You must be signed in to change notification settings - Fork 9
85 lines (70 loc) · 2.51 KB
/
ci.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Build and Deploy Sphinx Documentation
on:
push:
branches:
- master
paths:
- 'squadds/**' # Trigger when changes are made to any file in 'squadds' directory
- 'docs/**' # Trigger when changes are made to any file in 'docs' directory
- 'tutorials/**' # Trigger when changes are made to any file in 'tutorials' directory
workflow_dispatch:
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Cache Python dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install squadds library
run: |
python -m pip install --upgrade pip
pip install datasets
python -m pip install "dask[dataframe]" --upgrade
pip install pyEPR-quantum
pip install pyaedt
pip install -e .
pip install -r requirements.txt
- name: Verify qutip and scqubits Installation
run: |
python -c "import qutip; print(qutip.__version__)"
python -c "import scqubits; print(scqubits.__version__)"
- name: Test Python Imports
run: python tests/imports_test.py
- name: Install documentation dependencies
run: |
pip install sphinx qiskit-sphinx-theme nbsphinx jupyter_sphinx sphinx_copybutton sphinx_design reno sphinxcontrib-katex pydata_sphinx_theme recommonmark
- name: Install Pandoc v 2.18
run: |
sudo apt-get remove -y pandoc
wget https://github.com/jgm/pandoc/releases/download/2.18/pandoc-2.18-1-amd64.deb
sudo dpkg -i pandoc-2.18-1-amd64.deb
- name: List files
run: ls -lah
- name: Generate documentation
run: |
cd docs
sphinx-apidoc -f -o source/ ../
- name: Move tutorials to docs/source/tutorials
run: |
cp tutorials/Tutorial*.ipynb docs/source/tutorials
cp tutorials/*.png docs/source/tutorials
- name: Build documentation
run: |
cd docs
make clean
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.SQuADDS}}
publish_dir: ./docs/build/html