Skip to content

Add linting workflow using Ruff for pull requests #1

Add linting workflow using Ruff for pull requests

Add linting workflow using Ruff for pull requests #1

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3
with:
args: check --select E,F,W --ignore E501