Skip to content

fix: fix isort bug in test config #13

fix: fix isort bug in test config

fix: fix isort bug in test config #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint and Style Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install lint tools
run: pip install black isort flake8
- name: Check formatting with black
run: black --check .
- name: Check import order with isort
run: isort --check-only .
- name: Lint with flake8
run: flake8 .