Skip to content

Run Python unittests on GitHub Actions with ffmpeg 4 #5

Run Python unittests on GitHub Actions with ffmpeg 4

Run Python unittests on GitHub Actions with ffmpeg 4 #5

Workflow file for this run

name: Unit Test
on:
push:
branches: [ main ]
pull_request:
concurrency:
group: unit-test${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash -l -eo pipefail {0}
jobs:
unit_tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Setup conda env
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
miniconda-version: "latest"
activate-environment: test
python-version: ${{ matrix.python-version }}
- name: Update pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: |
python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu
- name: Build and install torchcodec
run: |
which ffmpeg
conda install ffmpeg -c conda-forge
python -m pip install -e ".[dev]" --no-build-isolation -vvv