Update link to paper #41
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: Continuous integration | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
tests-ubuntu: | |
name: Tests (Ubuntu) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.7' | |
architecture: 'x64' | |
- name: Install requirements | |
run: | | |
pip install -r requirements.txt | |
pip install pytest>=5.3 pycodestyle | |
pip install cirq qiskit | |
- name: Check style | |
run: pycodestyle . | |
- name: Run tests | |
run: pytest . --ignore=quantum_decomp/qsharp_integration_test.py | |
tests-windows: | |
name: Tests (Windows) | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.7' | |
architecture: 'x64' | |
- name: Install requirements | |
run: | | |
pip install -r requirements.txt | |
pip install pytest>=5.3 pycodestyle | |
pip install cirq qiskit | |
- name: Run tests | |
run: pytest . --ignore=quantum_decomp/qsharp_integration_test.py |