Skip to content

Create ruff.yml

Create ruff.yml #1

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python
run: uv python install
- name: Run ruff
run: |
uvx ruff check
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')