Skip to content

Add data residency (#74) #87

Add data residency (#74)

Add data residency (#74) #87

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install uv
run: python -m pip install uv
- name: Install dependencies
run: |
uv pip install --system -e ".[dev]"
- name: Run tests
run: |
uv run pytest --cov=elevenlabs_mcp --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
fail_ci_if_error: false
verbose: true