File: pre-commit.yml

package info (click to toggle)
apipkg 3.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 192 kB
  • sloc: python: 798; makefile: 5; sh: 2
file content (16 lines) | stat: -rw-r--r-- 271 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: pre-commit

on:
  pull_request:
  push:
    branches: [main]

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@v2.0.3