Skip to content

[SDS-NNN] rework readthedocs #30

[SDS-NNN] rework readthedocs

[SDS-NNN] rework readthedocs #30

Workflow file for this run

name: GitHub Actions for Quantum Inspire Examples CI
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 3
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade .
- name: Run Tests
run: |
bash select_examples_to_execute.sh
jupyter --version
bash select_notebooks_to_execute.sh
shell: bash
env:
API_URL: https://staging.quantum-inspire.com
QI_TOKEN: ${{ secrets.QI_TOKEN }}