Skip to content

feat(exceptions): implement exception hierarchy (#4) #6

feat(exceptions): implement exception hierarchy (#4)

feat(exceptions): implement exception hierarchy (#4) #6

Workflow file for this run

name: Tests
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --dev
- name: Lint
run: uv run ruff check .
- name: Format check
run: uv run ruff format --check .
- name: Type check
run: uv run ty check src/
- name: Run tests with coverage
run: uv run pytest tests/ --cov=adk_secure_sessions --cov-report=term-missing --cov-fail-under=90 -v