Skip to content

Update astral-sh/setup-uv digest to d4b2f3b #62

Update astral-sh/setup-uv digest to d4b2f3b

Update astral-sh/setup-uv digest to d4b2f3b #62

Workflow file for this run

name: Test
on:
push:
branches-ignore: [main]
pull_request:
workflow_dispatch:
workflow_call:
jobs:
test:
name: Run Tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install uv
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
# For example, using `pytest`
run: uv run pytest tests