Skip to content

Commit

Permalink
adding python linter
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneknapp committed Oct 10, 2024
1 parent 4489c5a commit 7c1398b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/python-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "python lint"
on:
- pull_request

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install ruff
run: pip install ruff==0.6.9

- name: Lint python files
run: ruff check .

0 comments on commit 7c1398b

Please sign in to comment.