Skip to content

Requisite version bmp for release fix (#271) #7

Requisite version bmp for release fix (#271)

Requisite version bmp for release fix (#271) #7

Workflow file for this run

name: Lint
on:
push:
paths:
- 'src/'
- 'tests/'
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11.5
- name: Install dependencies
run: pip install .[linting]
- name: Run flake8
run: |
ruff .
ruff format --check .
isort src/organizations --check --diff