fixed workflow file
Some checks failed
Linter / Lint (3.11) (push) Failing after 44s

This commit is contained in:
Seaswimmer 2023-11-25 01:25:14 -05:00
parent 9fcb9fbc09
commit 6e0bd51690
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -24,15 +24,15 @@ jobs:
export PATH="$HOME/.local/bin:$PATH"
poetry env use ${{ matrix.python-version }}
poetry install --with dev
- name: Analysing the code with Pylint
- name: Analysing Python files with Pylint
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run pylint $(git ls-files '*.py')
- name: Analysing HTML templates with djLint
if: ${{ cancelled() }}
if: ${{ !cancelled() }}
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run djlint $(git ls-files '*.py') --lint --check
- name: Analysing CSS styles with StyleLint
if: ${{ cancelled() }}
if: ${{ !cancelled() }}
uses: actions/stylelint@master