Skip to content

[MAIN] add ruff for autoformatting #6

[MAIN] add ruff for autoformatting

[MAIN] add ruff for autoformatting #6

Workflow file for this run

name: Ruff formatting
on:
# workflow_dispatch:
# schedule:
# - cron: "0 12 * * 0" # Weekly at noon UTC on Sundays
pull_request:
branches:
- master
types:
- opened
- reopened
- synchronize
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check with Ruff
uses: chartboost/ruff-action@v1
with:
args: 'check elephant'
- name: Fix with Ruff
uses: chartboost/ruff-action@v1
with:
args: 'fix elephant'
- name: Create PR
uses: peter-evans/create-pull-request@v5
with:
commit-message: ruff formatting
title: Ruff formatting
body: Reformatting code with ruff
branch: ruff-formatting