Skip to content

Commit

Permalink
ReWrite ruff.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SilentDemonSD committed Apr 14, 2024
1 parent 6ec1345 commit 791981e
Showing 1 changed file with 35 additions and 5 deletions.
40 changes: 35 additions & 5 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,40 @@
name: Ruff
name: Python Check & Format

on: [push, pull_request, workflow_dispatch]
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

jobs:
ruff:
check-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install Ruff Dependencies
run: pip install ruff

- name: Check and Format Python Code
run: ruff check --fix

- name: Commit Changes
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Automated Code by GitHub Actions"
- name: Push Changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 791981e

Please sign in to comment.