Skip to content

refactor: change pipeline name #2

refactor: change pipeline name

refactor: change pipeline name #2

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2
- name: Run Ruff linting and formatting
uses: astral-sh/ruff-action@v1.1.1
with:
args: "check --fix && ruff format ."
changed-files: "true"
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5.0.1
with:
commit_message: "ruff: fix and apply formatting"