Merge pull request #78 from Thom747/fix-pmg-decomp #260
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: SimulaQron backend tests | |
on: [push, pull_request] | |
jobs: | |
examples: | |
name: Run examples | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-python@master | |
with: | |
python-version: 3.8 | |
- name: Install simulaqron | |
run: pip install simulaqron | |
- name: Install netqasm | |
run: make install-dev | |
- name: Install projectq | |
run: pip install -Iv projectq | |
- name: Run examples | |
env: | |
NETQASM_SIMULATOR: simulaqron | |
run: make external-examples |