djLint/.github/workflows/lint.yml
2022-04-05 15:07:35 +00:00

14 lines
221 B
YAML

name: lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: run lint
run: |
pip install tox
tox -e lint