Skip to content

ci: make Dependabot PRs mergeable and consolidate updates into one gr… #59

ci: make Dependabot PRs mergeable and consolidate updates into one gr…

ci: make Dependabot PRs mergeable and consolidate updates into one gr… #59

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
unit:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: 'pip'
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv sync --extra dev
- name: Run unit tests
run: make test-unit
integration:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: 'pip'
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv sync --extra dev
- name: Run integration tests
run: make test-integration