From 46e2f19591eb5db6aabe7fa44a82ca25aa7455af Mon Sep 17 00:00:00 2001 From: Graham Strickland Date: Fri, 13 Sep 2024 13:15:57 +0200 Subject: [PATCH] Add multiple checks to ruff job --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9b452df..1fdf46e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,8 +12,9 @@ jobs: - name: Lint/format with ruff uses: chartboost/ruff-action@v1 with: - src: "./src" - args: "format --check" + args: + - "format --check" + - "check --fix" test: runs-on: macos-latest steps: