Skip to content

[All] Replace Black & Isort with Ruff (config files + reformatting). #1

[All] Replace Black & Isort with Ruff (config files + reformatting).

[All] Replace Black & Isort with Ruff (config files + reformatting). #1

Workflow file for this run

name: Ruff
on:
push:

Check failure on line 4 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/rust.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
pull_request:
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Ruff
uses: astral-sh/ruff-action@v3
- name: Run Ruff format
run: ruff format
- name: Run Ruff check
run: ruff check --fix --unsafe-fixes