Skip to content

explicit django 5.0 support #59

explicit django 5.0 support

explicit django 5.0 support #59

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Lint ${{ matrix.hook }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
hook: ["black", "isort", "djlint-django"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Lint ${{ matrix.hook }}
uses: pre-commit/[email protected]
with:
extra_args: ${{ matrix.hook }} --all-files