Update README.md (#136) #66
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: Ruff check and auto-fix | |
on: push | |
jobs: | |
ruff-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- uses: chartboost/ruff-action@v1 | |
with: | |
args: check --fix | |
src: sportslabkit | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'style fixes by ruff' |