-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fedir Zadniprovskyi
committed
Sep 8, 2024
1 parent
7afca8c
commit 3df8751
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,12 @@ jobs: | |
- run: uv sync --extra dev | ||
# TODO: figure out why `pytest` doesn't discover tests in `faster_whisper_server` directory by itself | ||
- run: uv run pytest src/faster_whisper_server/* tests | ||
test-docker-runs-on-arm: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: docker build --tag faster-whisper-server --file Dockerfile.cpu --platform linux/arm64 . | ||
- run: docker run --rm --detach faster-whisper-server | ||
- run: docker ps | ||
- run: uname -m | ||
- run: curl http://localhost:8000/v1/audio/transcriptions -F "[email protected]" |