summaryrefslogtreecommitdiff
path: root/.github/workflows/pre-commit.yaml
blob: 17c0ace02fc3fd46b3f4105560ef9aee9ee2e859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: pre-commit

on:
  pull_request:
  push:
    branches: [main, contribute]
    tags: [v*]


jobs:
  pre-commit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-python@v4
        with:
          python-version: 3.x
      - uses: pre-commit/action@v3.0.0