chore: Update locked dependencies #52
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: Run Pre-commit | |
| on: [push, pull_request] | |
| jobs: | |
| pre_commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| - name: Install dependencies | |
| run: | | |
| pip install -U uv | |
| uv sync | |
| export PATH="$PATH:$(pwd)/.venv/bin" | |
| uv add pre-commit ruff pylint | |
| .venv/bin/pre-commit run -a |