From cb4379aba4817483b8bbc5a78d62a6169ca60e93 Mon Sep 17 00:00:00 2001 From: Moritz-Alexander-Kern <92092328+Moritz-Alexander-Kern@users.noreply.github.com> Date: Tue, 16 Apr 2024 15:45:07 +0200 Subject: [PATCH] add ruff formatting action --- .github/workflows/ruff-formatting.yml | 44 +++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/ruff-formatting.yml diff --git a/.github/workflows/ruff-formatting.yml b/.github/workflows/ruff-formatting.yml new file mode 100644 index 000000000..93835d58e --- /dev/null +++ b/.github/workflows/ruff-formatting.yml @@ -0,0 +1,44 @@ +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 + id: ruff-check + uses: chartboost/ruff-action@v1 + with: + src: './elephant' + args: 'format --check' + continue-on-error: true + + - name: Fix with Ruff + uses: chartboost/ruff-action@v1 + if : ${{ steps.ruff-check.outcome == 'failure' }} + with: + src: './elephant' + args: 'format --verbose' + + - 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