Skip to content

Simplify getting started #105

Simplify getting started

Simplify getting started #105

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10' # or any version your project uses
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black==25.1.0 ruff==0.12.2
- name: Run Black
run: black --check .
- name: Run Ruff (no formatting)
run: ruff check . --no-fix