chore(deps): bump ruff from 0.6.4 to 0.6.8 (#202) #293
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: Format and lint | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.py' | |
- ruff.toml | |
- tests/requirements_tests.txt | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**.py' | |
- ruff.toml | |
- tests/requirements_tests.txt | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
name: Setup Python 3.11 | |
with: | |
python-version: 3.11 | |
cache: pip | |
cache-dependency-path: tests/requirements_tests.txt | |
- run: pip install -q -r tests/requirements_tests.txt | |
- run: make lint | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Auto lint and format using ruff |