Add trials
and threads
to GreedyPauliSimp
#4832
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint python projects | |
on: | |
pull_request: {} | |
workflow_dispatch: {} | |
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: Install black, pylint and ruff | |
run: pip install black pylint ruff | |
- name: Check files are formatted with black | |
run: | | |
# Paths specified to avoid formatting submodules | |
black --check . | |
- name: pylint check | |
run: | | |
cd pytket | |
pylint --ignore-paths=pytket/_tket pytket/ | |
- name: ruff check | |
run: | | |
cd pytket | |
ruff check . |