Skip to content

Bump ruff from 0.8.0 to 0.8.1 #545

Bump ruff from 0.8.0 to 0.8.1

Bump ruff from 0.8.0 to 0.8.1 #545

Workflow file for this run

name: Format & Lint
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black ruff isort
- name: Run isort
run: |
isort . --check --profile "black"
- name: Run black
run: |
black . --check --verbose
- name: Run ruff
run: |
ruff check .