Skip to content

updated ace and adm with new bp-agent (#165) #21

updated ace and adm with new bp-agent (#165)

updated ace and adm with new bp-agent (#165) #21

Workflow file for this run

name: Test transcoder
on:
push:
paths:
- .github/workflows/transcoder.yaml
- deps/**
- transcoder/**
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install flake8
working-directory: transcoder
run: pip3 install flake8
- name: Run flake8
working-directory: transcoder
run: |
FAIL_SRC=0
flake8 src || FAIL_SRC=$?