Skip to content

Assistant checkpoint: Add CI/CD workflows and code quality checks #1

Assistant checkpoint: Add CI/CD workflows and code quality checks

Assistant checkpoint: Add CI/CD workflows and code quality checks #1

Workflow file for this run

name: Code Quality
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black isort
- name: Run linters
run: |
flake8 .
black --check .
isort --check-only .