Skip to content

feat: allow negative controlled global phase gate #354

feat: allow negative controlled global phase gate

feat: allow negative controlled global phase gate #354

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Check code format
on:
pull_request:
branches:
- main
- feature/**
jobs:
check-code-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install tox
- name: Run code format checks
run: |
tox -e linters_check