Skip to content

Implementation of two-qubit rotation gates (#2) #149

Implementation of two-qubit rotation gates (#2)

Implementation of two-qubit rotation gates (#2) #149

Workflow file for this run

name: Run Unittests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Create & Activate venv
run: |
python3 -m venv .venv
source .venv/bin/activate
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --editable .
- name: Run tests with pytest
run: python3 -m unittest discover -s ./tests/