From 7e0a0fca056499bed4d286146dad63e4d09d2aa7 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:27:32 +0200 Subject: [PATCH] change name of steps --- .github/workflows/ruff-formatting.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ruff-formatting.yml b/.github/workflows/ruff-formatting.yml index 29032d4cd..41a607662 100644 --- a/.github/workflows/ruff-formatting.yml +++ b/.github/workflows/ruff-formatting.yml @@ -20,15 +20,15 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Check and Fix with Ruff + - name: Check with Ruff uses: chartboost/ruff-action@v1 with: - args: 'format --check elephant' + args: 'format --check elephant/elephant' - - name: Check and Fix with Ruff + - name: Fix with Ruff uses: chartboost/ruff-action@v1 with: - args: 'format --fix elephant' + args: 'format --fix elephant/elephant' - name: Create PR uses: peter-evans/create-pull-request@v5