Skip to content

ci: add typos

ci: add typos #75

Workflow file for this run

name: Style Check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install 'black[jupyter]' isort
- name: Check code style
run: |
isort --check .
black --check .