Skip to content

chore: bump the patch-updates group with 3 updates #514

chore: bump the patch-updates group with 3 updates

chore: bump the patch-updates group with 3 updates #514

Workflow file for this run

# This workflow will install Python dependencies, and run the tests for our project
name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, 'bump:')"
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Install uv
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
- name: Install the project
run: uv sync --locked --group test --all-extras --python 3.13
- name: Run tests
run: uv run pytest tests