Skip to content

Add LICENSE

Add LICENSE #5

name: Ruff
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Check formatting
run: |
ruff check .
ruff check --select I .
ruff format --check .