Skip to content

Bump ruff from 0.5.0 to 0.6.3 #41

Bump ruff from 0.5.0 to 0.6.3

Bump ruff from 0.5.0 to 0.6.3 #41

Workflow file for this run

name: lint
on: [pull_request]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3
with:
poetry-version: "1.4.2"
- name: poetry install
run: poetry install
- name: black
run: poetry run black --check --verbose active_pr/ tests/
- name: ruff
run: poetry run ruff check --exit-non-zero-on-fix active_pr/ tests/
- name: isort
run: poetry run isort --check-only active_pr/ tests/