Skip to content

Commit

Permalink
add pre-commit hooks
Browse files Browse the repository at this point in the history
Signed-off-by: Niclas Wesemann <[email protected]>
  • Loading branch information
nwesem committed Mar 15, 2024
1 parent 5414e0c commit 63e667e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
jobs:
pre-commit:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11

- name: pre-commit
run: |
pip install pre-commit
pre-commit run --all-files

0 comments on commit 63e667e

Please sign in to comment.