311e279596
* Add "branch" requirement to "push" workflows. * Deleted obsolete workflow files Signed-off-by: David Galiffi <David.Galiffi@amd.com> * Fix path to the `check-copyright.sh` in `pre-commit-config.yaml` --------- Signed-off-by: David Galiffi <David.Galiffi@amd.com>
50 linhas
1.6 KiB
YAML
50 linhas
1.6 KiB
YAML
name: rocprofiler-systems Python Linting
|
|
run-name: Python
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
paths:
|
|
- 'projects/rocprofiler-systems/**'
|
|
- 'projects/rocprofiler-systems/source/python/gui/*.py'
|
|
- 'projects/rocprofiler-systems/source/python/gui/**/*.py'
|
|
pull_request:
|
|
paths:
|
|
- 'projects/rocprofiler-systems/**'
|
|
- 'projects/rocprofiler-systems/source/python/gui/*.py'
|
|
- 'projects/rocprofiler-systems/source/python/gui/**/*.py'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
linting:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: projects/rocprofiler-systems
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
working-directory: projects/rocprofiler-systems/source/python/gui
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install flake8
|
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
- name: Lint with flake8
|
|
working-directory: projects/rocprofiler-systems/source/python/gui
|
|
run: |
|
|
# stop the build if there are Python syntax errors or undefined names
|
|
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
|
# flake8 options are defined in setup.cfg
|
|
flake8 . --count --statistics
|