Codebase cleanup: (i) Migrated codebase to bears (ii) Reformatted using Ruff (iii) removed star import from typing. #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |