build(deps): bump wandb from 0.17.4 to 0.18.6 #701
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 formatting | |
on: [pull_request] | |
jobs: | |
ruff: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
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' |