3 things were fixed: #34
This file contains hidden or 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: NetQASM backend tests | |
| on: push | |
| jobs: | |
| examples: | |
| name: Run examples | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@master | |
| with: | |
| python-version: "3.12" | |
| - name: Clone and install netqasm | |
| run: | | |
| git clone https://github.com/QuTech-Delft/netqasm.git | |
| cd netqasm | |
| make install | |
| cd .. | |
| - name: Install simulaqron | |
| run: make install | |
| - name: Install pybind | |
| run: pip install pybind11 | |
| - name: Install projectq | |
| run: pip install -Iv projectq==0.8.0 | |
| - name: Run examples | |
| env: | |
| NETQASM_SIMULATOR: simulaqron | |
| run: make -C netqasm external-examples |