mirror of
https://github.com/openai/whisper.git
synced 2025-09-16 04:20:12 +00:00
29 lines
969 B
YAML
29 lines
969 B
YAML
name: test
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
whisper-test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ['3.8', '3.9', '3.10']
|
|
pytorch-version: [1.10.2, 1.13.1]
|
|
exclude:
|
|
- python-version: '3.10'
|
|
pytorch-version: 1.10.2
|
|
steps:
|
|
- uses: conda-incubator/setup-miniconda@v2
|
|
- run: conda install -n test ffmpeg python=${{ matrix.python-version }} pytorch=${{ matrix.pytorch-version }} cpuonly -c pytorch
|
|
- uses: actions/checkout@v2
|
|
- run: echo "$CONDA/envs/test/bin" >> $GITHUB_PATH
|
|
- run: pip install .["dev"]
|
|
- run: black --check --diff -t py38 --include '(\.pyi?)$' .
|
|
- run: isort --check --diff .
|
|
- run: flake8 --ignore E203,W503,W504,E501,E731,E741 .
|
|
- run: pytest --durations=0 -vv -k 'not test_transcribe or test_transcribe[tiny] or test_transcribe[tiny.en]' -m 'not requires_cuda'
|