feat(api): transcription/translation endpoints #1745
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pytest | |
on: | |
pull_request: | |
types: | |
- ready_for_review | |
- review_requested | |
- synchronize | |
- milestoned | |
paths: | |
- "**" | |
- "!.github/**" | |
- ".github/workflows/pytest.yaml" | |
- ".github/workflows/pytest-shim.yaml" | |
# Ignore docs and website things | |
- "!**.md" | |
- "!docs/**" | |
- "!adr/**" | |
- "!website/**" | |
- "!netlify.toml" | |
# Ignore updates to generic github metadata files | |
- "!CODEOWNERS" | |
- "!.gitignore" | |
- "!LICENSE" | |
# Ignore LFAI-UI things (no Python) | |
- "!src/leapfrogai_ui/**" | |
- "!packages/ui/**" | |
# Declare default permissions as read only. | |
permissions: read-all | |
concurrency: | |
group: pytest-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c #v5.0.0 | |
with: | |
python-version-file: 'pyproject.toml' | |
- name: Build Repeater | |
run: | | |
make local-registry | |
make setup-repeater-deps | |
docker build -t ghcr.io/defenseunicorns/leapfrogai/repeater:dev packages/repeater | |
docker tag ghcr.io/defenseunicorns/leapfrogai/repeater:dev localhost:5000/defenseunicorns/leapfrogai/repeater:dev | |
- name: Run Repeater | |
run: docker run -p 50051:50051 -d --name=repeater ghcr.io/defenseunicorns/leapfrogai/repeater:dev | |
- name: Install Python Deps | |
run: pip install "." "src/leapfrogai_api" "src/leapfrogai_sdk" | |
- name: Run Pytest | |
run: python -m pytest tests/pytest -v | |
env: | |
LFAI_RUN_REPEATER_TESTS: true |