From f71e5b0dcd87ffd89707d0277315ab9359ef1c48 Mon Sep 17 00:00:00 2001 From: Tudor Amariei Date: Thu, 14 Mar 2024 16:35:50 +0200 Subject: [PATCH] Fix newly changed pipelines --- .github/workflows/api_pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/api_pipeline.yml b/.github/workflows/api_pipeline.yml index 5b368d10..2700f47a 100644 --- a/.github/workflows/api_pipeline.yml +++ b/.github/workflows/api_pipeline.yml @@ -43,7 +43,7 @@ jobs: - name: Check formatting with Black run: | - black --check ./backend + black --check ./api linting_with_ruff: name: Run Ruff linting check @@ -65,7 +65,7 @@ jobs: - name: Lint files using Ruff run: | - ruff check ./backend + ruff check ./api checking_migrations: name: Check for migrations