Skip to content

Add --delete-images flag (#60) #55

Add --delete-images flag (#60)

Add --delete-images flag (#60) #55

Workflow file for this run

name: test
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install python v${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install -r tests/requirements.txt
sudo apt update && sudo apt install ffmpeg -y
- name: Run Tests
run: |
python -m unittest discover