Skip to content

Update actions/checkout action to v6 #151

Update actions/checkout action to v6

Update actions/checkout action to v6 #151

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install uv
uses: astral-sh/setup-uv@1edb52594c857e2b5b13128931090f0640537287 # 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