Setup UV python package manager (excluding explicit pytorch) #41
Workflow file for this run
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
name: Test Run | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: '0 0 * * TUE' | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
python-version: ["3.10", "3.11", "3.12"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install ffmpeg | |
if: runner.os == 'Linux' | |
run: sudo apt update && sudo apt install -y ffmpeg | |
- name: Install ffmpeg | |
if: runner.os == 'macOS' | |
run: brew install ffmpeg | |
- name: Install ffmpeg | |
if: runner.os == 'Windows' | |
run: choco install ffmpeg | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
version: "0.5.9" | |
- name: Install the project | |
run: uv sync | |
- name: Test running a file | |
run: uv run diarize.py -a "./tests/assets/test.opus" --whisper-model tiny.en |