mirror of
https://github.com/openai/whisper.git
synced 2025-09-16 04:20:12 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
80 lines
2.7 KiB
YAML
80 lines
2.7 KiB
YAML
name: test
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
pre-commit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Fetch base branch
|
|
run: git fetch origin ${{ github.base_ref }}
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.9"
|
|
architecture: x64
|
|
- name: Get pip cache dir
|
|
id: pip-cache
|
|
run: |
|
|
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
|
|
- name: pip/pre-commit cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
${{ steps.pip-cache.outputs.dir }}
|
|
~/.cache/pre-commit
|
|
key: ${{ runner.os }}-pip-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-pre-commit
|
|
- name: pre-commit
|
|
run: |
|
|
pip install --upgrade pre-commit
|
|
pre-commit install --install-hooks
|
|
pre-commit run --all-files
|
|
whisper-test:
|
|
needs: pre-commit
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- python-version: '3.8'
|
|
pytorch-version: 1.10.1
|
|
numpy-requirement: "'numpy<2'"
|
|
- python-version: '3.8'
|
|
pytorch-version: 1.13.1
|
|
numpy-requirement: "'numpy<2'"
|
|
- python-version: '3.8'
|
|
pytorch-version: 2.0.1
|
|
numpy-requirement: "'numpy<2'"
|
|
- python-version: '3.9'
|
|
pytorch-version: 2.1.2
|
|
numpy-requirement: "'numpy<2'"
|
|
- python-version: '3.10'
|
|
pytorch-version: 2.2.2
|
|
numpy-requirement: "'numpy<2'"
|
|
- python-version: '3.11'
|
|
pytorch-version: 2.3.1
|
|
numpy-requirement: "'numpy'"
|
|
- python-version: '3.12'
|
|
pytorch-version: 2.4.1
|
|
numpy-requirement: "'numpy'"
|
|
- python-version: '3.12'
|
|
pytorch-version: 2.5.1
|
|
numpy-requirement: "'numpy'"
|
|
- python-version: '3.13'
|
|
pytorch-version: 2.5.1
|
|
numpy-requirement: "'numpy'"
|
|
steps:
|
|
- uses: conda-incubator/setup-miniconda@v3
|
|
- run: conda install -n test ffmpeg python=${{ matrix.python-version }}
|
|
- uses: actions/checkout@v5
|
|
- run: echo "$CONDA/envs/test/bin" >> $GITHUB_PATH
|
|
- run: pip3 install .["dev"] ${{ matrix.numpy-requirement }} torch==${{ matrix.pytorch-version }}+cpu --index-url https://download.pytorch.org/whl/cpu --extra-index-url https://pypi.org/simple
|
|
- run: pytest --durations=0 -vv -k 'not test_transcribe or test_transcribe[tiny] or test_transcribe[tiny.en]' -m 'not requires_cuda'
|