Skip to content

Update auto_rebase_pass to take optional allow_swaps argument #3217

Update auto_rebase_pass to take optional allow_swaps argument

Update auto_rebase_pass to take optional allow_swaps argument #3217

Workflow file for this run

name: Lint python projects
on:
pull_request: {}
workflow_dispatch: {}
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install black and pylint
run: pip install black~=22.3 pylint~=2.13,!=2.13.6
- name: Check files are formatted with black
run: |
# Paths specified to avoid formatting submodules
black --check .
- name: pylint check
run: |
cd pytket
pylint pytket/