summaryrefslogtreecommitdiffstats
path: root/.github/workflows/lint.yml
blob: 6c55c6b77f628279b6913d6b9fe7e544a24fadf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Linting

on:
  push:
  pull_request:

  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-python@v4
      - name: Run pre-commit linting
        uses: pre-commit/action@v3.0.0