name: Unit Tests
on:
push:
branches: [ main, dev, master ]
pull_request:
branches: [ main, dev, master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
- name: Install dependencies
run: |
uv sync
- name: Run unit tests
run: |
uv run pytest tests/ -v --tb=short
env:
# Google Cloud credentials would be set here in production
# For now, tests should handle missing credentials gracefully
GOOGLE_APPLICATION_CREDENTIALS: ""