Skip to content

Python Actions Testin #11

Python Actions Testin

Python Actions Testin #11

name: Python Codestyle
on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- 'binding/python/*.py'
- 'demo/python/*.py'
- '.github/workflows/python-codestyle.yml'
pull_request:
branches: [ main, 'v[0-9]+.[0-9]+' ]
paths:
- 'binding/python/*.py'
- 'demo/python/*.py'
- '.github/workflows/python-codestyle.yml'
jobs:
check-python-codestyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: pip install flake8 pep8-naming
- name: Check python codestyle
run: flake8 --ignore=F401,F403,F405 --max-line-length=120 binding/python demo/python