Skip to content

clarify intro description #3

clarify intro description

clarify intro description #3

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Intsall linux dependencies
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip" # cache pip dependencies
cache-dependency-path: "**/pyproject.toml" # cache dependencies based on pyproject.toml
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Test with pytest
run: |
pytest