Skip to content

Codebase cleanup: (i) Migrated codebase to bears (ii) Reformatted using Ruff (iii) removed star import from typing. #13

Codebase cleanup: (i) Migrated codebase to bears (ii) Reformatted using Ruff (iii) removed star import from typing.

Codebase cleanup: (i) Migrated codebase to bears (ii) Reformatted using Ruff (iii) removed star import from typing. #13

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
ruff-formatter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
with:
version: '0.9.2'
args: format --check
src: './src'