From 93459d3ce96f011087abea58b55907475be60336 Mon Sep 17 00:00:00 2001 From: Johan Date: Mon, 2 Feb 2026 16:06:02 +0100 Subject: [PATCH] fix: correct YAML indentation in CI workflow --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8e9db6..e08920f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,8 +55,4 @@ jobs: - name: Run tests run: | - if [ -d backend/tests ]; then - pytest -q - else - echo "No tests directory found: skipping pytest" - fi + if [ -d backend/tests ]; then pytest -q; else echo "No tests found"; fi