From 29e269a542b301c029866198d400729985cf8279 Mon Sep 17 00:00:00 2001 From: Pierre-Alexandre35 <46579114+Pierre-Alexandre35@users.noreply.github.com> Date: Sun, 27 Oct 2024 22:11:41 +0100 Subject: [PATCH] (CI) backend dependencies install --- .github/workflows/integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index aa2b41d9..c50bb83d 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -94,11 +94,11 @@ jobs: - name: Run Black run: poetry run black --check . - - name: Run Flake8 --exclude .venv + - name: Run Flake8 --exclude ./.venv/ run: poetry run flake8 . - - name: Run Isort --exclude .venv + - name: Run Isort --exclude ./.venv/ run: poetry run isort --check-only . - - name: Run Safety --exclude .venv + - name: Run Safety --exclude ./.venv/ run: poetry run safety check