Skip to content

Commit

Permalink
[CI] make pre-commit hooks to run on every push instead of every comm…
Browse files Browse the repository at this point in the history
…it (apache#8888)
  • Loading branch information
mikepapadim authored and ylc committed Jan 13, 2022
1 parent 65cbd5d commit def4a57
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# Requirements:
# - How to configure:
# - $ pip install pre-commit
# - $ pre-commit install
# - $ pre-commit install --hook-type pre-push
# - How to prevent running it:
# - git options: --no-verify or -n
# - $ git commit -n -m "YOUR COMMIT MESSAGE"
Expand All @@ -32,8 +32,9 @@
#

default_language_version:
python: python3.8
python: python3.6
fail_fast: True
default_stages: [push]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
Expand All @@ -42,7 +43,9 @@ repos:
- id: check-merge-conflict
- id: check-yaml
- id: end-of-file-fixer
stages: [push]
- id: trailing-whitespace
stages: [push]
- repo: local
hooks:
- id: run-black
Expand Down

0 comments on commit def4a57

Please sign in to comment.