From 97f32b6a6b7a543bb1d0f3bbf10f845ab0d09a67 Mon Sep 17 00:00:00 2001 From: Trey Date: Fri, 9 Feb 2024 21:35:55 +0000 Subject: [PATCH] Changed naming --- .github/workflows/run_djlint.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_djlint.yml b/.github/workflows/run_djlint.yml index cbe9b4a6..0d658a03 100644 --- a/.github/workflows/run_djlint.yml +++ b/.github/workflows/run_djlint.yml @@ -23,6 +23,11 @@ jobs: virtualenvs-in-project: false installer-parallel: true + - name: Setup VENV + run: | + python -m venv venv + source .venv/bin/activate + - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root @@ -35,6 +40,4 @@ jobs: #---------------------------------------------- - name: Run djLint - run: | - source .venv/bin/activate - poetry run djlint ./frontend/templates/ --check --profile=django \ No newline at end of file + run: poetry run djlint ./frontend/templates/ --check --profile=django \ No newline at end of file