Skip to content

fix: Warn user about implicit qubit permutations in tk_to_qiskit #1023

fix: Warn user about implicit qubit permutations in tk_to_qiskit

fix: Warn user about implicit qubit permutations in tk_to_qiskit #1023

Workflow file for this run

name: Lint python projects
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Update pip
run: pip install --upgrade pip
- name: Install black and pylint
run: pip install black pylint ruff
- name: Check files are formatted with black
run: |
black --check .
- name: Run ruff
run: |
ruff check .
- name: Run pylint
run: pylint */