Skip to content

[gen_efi_app] Updated ATS CLI mechanism, docs #9

[gen_efi_app] Updated ATS CLI mechanism, docs

[gen_efi_app] Updated ATS CLI mechanism, docs #9

name: gen_efi_app_package_checker
on:
push:
branches: [ main ]
paths:
- 'gen_efi_app/**'
- 'tests/**'
- 'setup.py'
pull_request:
branches: [ main ]
paths:
- 'gen_efi_app/**'
- 'tests/**'
- 'setup.py'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install flake8
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide => strict 79
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=79 --statistics --max-doc-length 79