djLint/.github/workflows/lint.yml
2021-09-17 10:25:01 +02:00

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