Skip to content

Merge pull request #2 from lnx85/devel #20

Merge pull request #2 from lnx85/devel

Merge pull request #2 from lnx85/devel #20

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: isort
run: isort --recursive --diff .
- name: Black
run: black --check --diff .