reqs install before local #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy Sphinx Documentation | |
on: | |
push: | |
branches: | |
- master | |
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 -r requirements.txt | |
pip install -e . | |
pip install pyEPR-quantum | |
- 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 imports_test.py | |
- name: Install documentation dependencies | |
run: | | |
pip install sphinx qiskit-sphinx-theme nbsphinx jupyter_sphinx sphinx_copybutton sphinx_design reno sphinxcontrib-katex | |
- 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 -o source/ ../ | |
- name: Move tutorials to docs/source/tutorials | |
run: | | |
cp tutorials/Tutorial*.ipynb 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 | |