From c341886e1994c77beddac40a2007ee7326ed1d32 Mon Sep 17 00:00:00 2001 From: Silvan Verhoeven Date: Sat, 10 Aug 2024 21:52:12 +0200 Subject: [PATCH] fix: use djLint instead of djhtml in GitHub job --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a7b87c72..a4c88d95 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,10 +40,10 @@ jobs: run: | poetry run pylint --version poetry run pylint --fail-under=9 myhpi - - name: Lint templates with djhtml + - name: Lint templates with djLint run: | - poetry run djhtml --version - poetry run djhtml --check myhpi + poetry run djlint --version + poetry run djlint --lint myhpi test: runs-on: ubuntu-20.04