Skip to content

ci(github-action)!: Update astral-sh/setup-uv action (v6.8.0 → v10.1.0) #239

ci(github-action)!: Update astral-sh/setup-uv action (v6.8.0 → v10.1.0)

ci(github-action)!: Update astral-sh/setup-uv action (v6.8.0 → v10.1.0) #239

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
- name: Set up Python 3.11
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: '3.14'
- name: Install uv package manager
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
- name: Cache uv dependencies
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: .venv
key: ${{ runner.os }}-uv-${{ hashFiles('**/pyproject.toml') }}
- name: Install uv dependencies
run: uv sync --dev
- name: Run unit tests
run: uv run pytest tests/unit -v
- name: Run integration tests
run: uv run pytest tests/integration -v