Skip to content

build(deps): bump sharp from 0.32.6 to 0.33.0 in /app/web #446

build(deps): bump sharp from 0.32.6 to 0.33.0 in /app/web

build(deps): bump sharp from 0.32.6 to 0.33.0 in /app/web #446

name: Video Processing Server Unit Tests
concurrency:
group: ${{ github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- "develop"
- "master"
- "main"
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
token: ${{ github.token }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
cache-dependency-path: "**/requirements.txt"
- name: Install dependencies
run: pip install -r app/video-processing/requirements.txt -r app/video-processing/requirements_dev.txt
- name: Run tests
run: cd app/video-processing/ && make test