mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-01 13:10:24 +00:00
14 lines
221 B
YAML
14 lines
221 B
YAML
name: lint
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: run lint
|
|
run: |
|
|
pip install tox
|
|
tox -e lint
|