Skip to content

lint

lint #1

Workflow file for this run

name: Lint
on:
push:
branches: ["**"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files