Skip to content

Commit

Permalink
Add a gh action for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rsonke-maxxton committed Nov 17, 2024
1 parent be8c9c8 commit 13601e4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: pre-commit

on:
pull_request:
push:
branches: [master]

jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: pre-commit/action@v3.0.1
- uses: pre-commit-ci/lite-action@v1.1.0
if: always()

0 comments on commit 13601e4

Please sign in to comment.