build(deps-dev): bump @types/react-dom from 18.2.15 to 18.2.17 in /app/web #295
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- name: Run tests | |
run: cd app/video-processing/ && python3 -m unittest discover -s . |