Fedir Zadniprovskyi commited on
Commit
0317ca7
·
1 Parent(s): 26f1cb9
Files changed (1) hide show
  1. .github/workflows/test.yaml +9 -0
.github/workflows/test.yaml CHANGED
@@ -21,3 +21,12 @@ jobs:
21
  - run: uv sync --extra dev
22
  # TODO: figure out why `pytest` doesn't discover tests in `faster_whisper_server` directory by itself
23
  - run: uv run pytest src/faster_whisper_server/* tests
 
 
 
 
 
 
 
 
 
 
21
  - run: uv sync --extra dev
22
  # TODO: figure out why `pytest` doesn't discover tests in `faster_whisper_server` directory by itself
23
  - run: uv run pytest src/faster_whisper_server/* tests
24
+ test-docker-runs-on-arm:
25
+ runs-on: macos-latest
26
+ steps:
27
+ - uses: actions/checkout@v4
28
+ - run: docker build --tag faster-whisper-server --file Dockerfile.cpu --platform linux/arm64 .
29
+ - run: docker run --rm --detach faster-whisper-server
30
+ - run: docker ps
31
+ - run: uname -m
32
+ - run: curl http://localhost:8000/v1/audio/transcriptions -F "[email protected]"