2020-09-30 13:23:34 +00:00
|
|
|
name: pre-commit
|
|
|
|
|
2022-07-11 11:11:17 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2020-09-30 13:23:34 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
pre-commit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-07-07 03:25:25 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/cache@v3
|
2020-11-05 11:06:59 +00:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cache/pre-commit
|
|
|
|
~/.cache/pip
|
|
|
|
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
|
2022-07-07 03:25:25 +00:00
|
|
|
- uses: actions/setup-python@v4
|
2021-11-16 14:01:17 +00:00
|
|
|
with:
|
2022-07-07 03:25:25 +00:00
|
|
|
python-version: 3.x
|
|
|
|
# - uses: psf/black@22.6.0
|
2020-09-30 13:23:34 +00:00
|
|
|
- name: Install pre-commit
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
python -m pip install --upgrade pre-commit
|
|
|
|
- run: pre-commit run --verbose --all-files --show-diff-on-failure
|