Skip to content

gitlog2changelog.py: sync to releasebranch_8_4 (fixes invalid escape … #7806

gitlog2changelog.py: sync to releasebranch_8_4 (fixes invalid escape …

gitlog2changelog.py: sync to releasebranch_8_4 (fixes invalid escape … #7806

Workflow file for this run

---
name: Python code quality check
on:
- push
- pull_request
jobs:
flake8-lib-python:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install
run: |
python -m pip install --upgrade pip
pip install flake8==3.8.0
- name: Run Flake8
run: |
cd lib/python
flake8 --count --statistics --show-source --jobs=$(nproc) .
flake8-wxgui:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install
run: |
python -m pip install --upgrade pip
pip install flake8==3.8.0
- name: Run Flake8
run: |
cd gui/wxpython
flake8 --count --statistics --show-source --jobs=$(nproc) .
flake8-scripts:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install
run: |
python -m pip install --upgrade pip
pip install flake8==3.8.0
- name: Run Flake8
run: |
cd scripts
flake8 --count --statistics --show-source --jobs=$(nproc) .
flake8-temporal-modules:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install
run: |
python -m pip install --upgrade pip
pip install flake8==3.8.0
- name: Run Flake8
run: |
cd temporal
flake8 --count --statistics --show-source --jobs=$(nproc) .