aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/pre-commit.yml
blob: 3e93bc7dbb3c61826cd2a929eabca921655862c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Lint (Ruff, MyPy)
on:
  push:
  workflow_dispatch:
jobs:
  pre-commit:
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v5
        with:
          python-version: "3.10"
      - uses: pre-commit/action@v3.0.1
        with:
          extra_args: --all-files