Skip to content

Bump quri-parts-qulacs from 0.20.2 to 0.20.3 #4

Bump quri-parts-qulacs from 0.20.2 to 0.20.3

Bump quri-parts-qulacs from 0.20.2 to 0.20.3 #4

Workflow file for this run

name: Lint
on:
pull_request:
paths:
- pyproject.toml
- poetry.lock
- quri_algo/**.py
- .flake8
- .github/workflows/lint.yml
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: |
poetry install --only lint
- run: poetry run isort quri_algo --check --diff
if: success() || failure()
- run: poetry run black quri_algo --check
if: success() || failure()
- run: poetry run flake8 quri_algo --show-source
if: success() || failure()
- run: poetry run docformatter -c -r quri_algo
if: success() || failure()