File size: 518 Bytes
93fae96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: test
on:
  workflow_dispatch:
  push:
    branches:
      - master
  pull_request:
jobs:
  pytest:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v5
        with:
          python-version: 3.12
      - run: pip install uv
      - run: uv pip install --no-cache --system -r requirements-dev.txt
      # TODO: figure out why `pytest` doesn't discover tests in `faster_whisper_server` directory by itself
      - run: pytest faster_whisper_server/* tests