SENATOROV #8
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: "SENATOROV" | |
permissions: | |
contents: write | |
on: | |
push: | |
branches: | |
- "**" | |
schedule: | |
- cron: "0 0 * * *" # Run every day | |
workflow_dispatch: | |
create: | |
delete: | |
release: | |
issues: | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip install --user ruff | |
- run: ruff check --fix --output-format=github $(git ls-files '*.py' '*.ipynb') # Lint Python files |