Skip to content
This repository has been archived by the owner on Feb 11, 2025. It is now read-only.

Add workflow to lint codebase using ruff #7

Add workflow to lint codebase using ruff

Add workflow to lint codebase using ruff #7

Workflow file for this run

name: Lint codebase
on:
push:
branches: main
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
name: Critical lint Python
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v1
with:
changed-files: 'true'