build(deps): bump the pip group with 2 updates #216
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| id: setup-python | |
| uses: actions/setup-python@v6 | |
| - name: Cache virtualenv | |
| id: cache-venv | |
| uses: actions/cache@v4 | |
| with: | |
| path: .venv | |
| key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv-${{ hashFiles('pyproject.toml') }} | |
| - name: Cache prek | |
| id: cache-prek | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/prek | |
| key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-prek-${{ hashFiles('.prek-config.yaml') }} | |
| - name: install uv | |
| run: curl -LsSf https://astral.sh/uv/install.sh | sh | |
| - name: make install | |
| if: steps.cache-venv.outputs.cache-hit != 'true' | |
| run: make install | |
| - name: make hooks | |
| run: make hooks |