Skip to content

Visualization tools for single-qubit POVMs and products of single-qub… #10

Visualization tools for single-qubit POVMs and products of single-qub…

Visualization tools for single-qubit POVMs and products of single-qub… #10

Workflow file for this run

name: Publish Sphinx docs
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
sudo apt-get update
sudo apt-get install -y pandoc
- name: Build docs
shell: bash
run: |
tox -e docs
- name: Upload docs artifact
if: always()
uses: actions/upload-pages-artifact@v3
with:
path: docs/_build/html
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4