Skip to content

fix: test with ruff

fix: test with ruff #4

Workflow file for this run

name: Lint code with ruff
on:
push:
branches:
- main
paths:
- "**/*.py"
pull_request:
branches:
- main
paths:
- "**/*.py"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Analyze code with ruff
uses: astral-sh/ruff-action@v3
with:
args: "check"