diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml index 8c621b94..d7bd120e 100644 --- a/.github/workflows/ruff.yml +++ b/.github/workflows/ruff.yml @@ -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 }}