Skip to content

Commit

Permalink
Move GitHub linter action to proper directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorena Mesa committed Jul 17, 2024
1 parent 31e452b commit d597867
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/github-actions-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint and Commit
on: push

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v3
- uses: chartboost/ruff-action@v1
with:
args: --check .
fix_args: --fix .
config: .ruff.toml
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'Applied linter fixes by ruff'

0 comments on commit d597867

Please sign in to comment.