Skip to content

Commit

Permalink
Changed naming
Browse files Browse the repository at this point in the history
  • Loading branch information
TreyWW committed Feb 9, 2024
1 parent 4ad493f commit 97f32b6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/run_djlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -35,6 +40,4 @@ jobs:
#----------------------------------------------

- name: Run djLint
run: |
source .venv/bin/activate
poetry run djlint ./frontend/templates/ --check --profile=django
run: poetry run djlint ./frontend/templates/ --check --profile=django

0 comments on commit 97f32b6

Please sign in to comment.