From c18592bb56782ee9c50a54c9abe8fe219fe07a28 Mon Sep 17 00:00:00 2001 From: Restioson Date: Tue, 5 Nov 2024 12:53:49 +0200 Subject: [PATCH] fix(ci): run linter in CI We were not actually running the linter in CI (despite the name of the job saying so) --- .github/workflows/testing.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 79106b6..c9a9070 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -34,7 +34,8 @@ jobs: - name: Run linting tools run: | cd app/ - ruff format . + ruff format --diff . + ruff check --diff . - name: Create logging folder run: | sudo mkdir -p /logging