summaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
blob: 46f1531c491bfc8d85b35bd92f1bfe3d04d678ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
name: lint

on:
  push:
    branches: ["main"]
  pull_request:
    branches: ["main"]

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-python@v3
      - uses: pre-commit/action@v3.0.1