Skip to content

developing

developing #11

Workflow file for this run

name: Run pytest
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: github-actions-1
container: python:3.9-slim
steps:
- uses: actions/checkout@v3
- name: Run dependency libraries
run: |
apt update
apt upgrade
apt install -y ffmpeg
- name: Run dependency libraries
run: |
pip install torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 torchtext==0.16.0
pip install decord pytest
- name: Run pytest
run: pytest tests