From ad9cda8853a26b025d0f4ba3f51afd343c435f27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedek=20D=C3=A9v=C3=A9nyi?= Date: Fri, 5 Jul 2024 23:00:24 +0200 Subject: [PATCH] Revert to chartboost/ruff-action (#931) Looks like it works actually, we just forgot to add "check" to the overwritten args parameter --- .github/workflows/checks.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 3d18143b..39f54d91 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -1,16 +1,12 @@ name: Checks -on: - push: - branches: - - "main" - pull_request: +on: [push, pull_request] jobs: ruff: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: nkarasiak/ruff-action@v2 + - uses: chartboost/ruff-action@v1 with: - args: --output-format github + args: 'check --output-format github'