Add missing jobs block in test github action runner #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . | |
src: .ruff.toml | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'Applied linter fixes by ruff' |