Skip to content

Fixing some jobs

Fixing some jobs #3

Workflow file for this run

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