Skip to content

Fix lint error & remove black #345

Fix lint error & remove black

Fix lint error & remove black #345

Workflow file for this run

name: Lint
on:
push:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # This will install the latest version of Python 3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run lint script
run: bash scripts/lint.sh