Skip to content

Merge pull request #651 from Ana06/isort #11

Merge pull request #651 from Ana06/isort

Merge pull request #651 from Ana06/isort #11

Workflow file for this run

name: Linter
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: windows-2022
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install dependencies
run: pip install black isort
- name: Run black
run: black --line-length=120 --check --diff .
- name: Run isort
run: isort --check --diff .