blob: d109e5d6ad455e17f6db51b157dc958f80d67557 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
name: pre_commit
# If a pull-request is pushed then cancel all previously running jobs related
# to that pull-request
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
on:
push:
branches:
- main
paths:
.github/workflows/pre_commit.yml
.pre-commit-config.yaml
pull_request:
branches:
- main
- master
paths:
- .github/workflows/pre_commit.yml
- .pre-commit-config.yaml
env:
PY_COLORS: 1
jobs:
pre_commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install --upgrade -r requirements.txt -r requirements-lint.txt pre-commit
- name: Run pre-commit install
run: pre-commit install
- name: pre-commit run all-files
run: pre-commit run --all-files
|