chore(deps): bump build from 1.5.0 to 1.5.1 #193
This file contains hidden or 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 | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install the latest version of ruff | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| version: "latest" | |
| - run: "ruff check --fix --exclude tests/ --exclude generate_docs.py ." | |
| - run: "ruff format --check --diff" | |