refactor tests directory to root directory #4
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: Run Linting with Ruff | |
on: [pull_request] | |
jobs: | |
run_kaggle_script_action: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- run: pip install ruff | |
- run: | | |
ruff check src/ . | |
ruff check --fix src/ | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'Style fixes by Ruff' |