Skip to content

Re-run benchmark against updated Qiskit version. #63

Re-run benchmark against updated Qiskit version.

Re-run benchmark against updated Qiskit version. #63

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
SRC_DIR: zxpass
TEST_DIR: test
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: pytest
run: |
pytest ${{ env.TEST_DIR }}