Skip to content

fix(health): add missing check for media conversion lambda #603

fix(health): add missing check for media conversion lambda

fix(health): add missing check for media conversion lambda #603

Workflow file for this run

name: Lambda Format Check
concurrency:
group: ${{ github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- "develop"
- "master"
- "main"
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
video-processing-flake8:
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.12'
cache: 'pip'
cache-dependency-path: "**/requirements*.txt"
- name: Install dependencies
working-directory: app/video-processing/lambda
run: pip install -r requirements_dev.txt
- name: Run flake8 check
working-directory: app/video-processing
run: make lint
video-conversion-flake8:
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.12'
cache: 'pip'
cache-dependency-path: "**/requirements*.txt"
- name: Install dependencies
working-directory: app/video-conversion/lambda
run: pip install -r requirements_dev.txt
- name: Run flake8 check
working-directory: app/video-conversion
run: make lint