summaryrefslogtreecommitdiffstats
path: root/.github/workflows/pre-commit.yml
blob: 5c1a29d00d1ef87aa8a83e7a1a8b562a2a85971b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
name: pre-commit
on:
  - pull_request
  - push
jobs:
  pre-commit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-python@v3
        with:
          python-version: "3.10"
      - uses: pre-commit/action@v2.0.3