Skip to content

[gen_coap_service] Updated ATS CLI mechanism, docs #14

[gen_coap_service] Updated ATS CLI mechanism, docs

[gen_coap_service] Updated ATS CLI mechanism, docs #14

name: gen_coap_service_package_checker
on:
push:
branches: [ master ]
paths:
- 'gen_coap_service/**'
- 'tests/**'
- 'setup.py'
pull_request:
branches: [ master ]
paths:
- 'gen_coap_service/**'
- '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: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- 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