Skip to content

build(deps): bump the pip group with 2 updates #216

build(deps): bump the pip group with 2 updates

build(deps): bump the pip group with 2 updates #216

Workflow file for this run

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