b793b183a4
* Fix rocprofiler-systems CI * Fix 'Documentation' jobs * Python Linting fix * Add python 3.11, 3.12 * Fix python linting * Re-add ubuntu-noble workflow * Remove old workflows from project folder Signed-off-by: David Galiffi <David.Galiffi@amd.com> * Update rocprofiler-systems workflows Signed-off-by: David Galiffi <David.Galiffi@amd.com> Signed-off-by: Jason Bonnell <Jason.Bonnell@amd.com> * Retire ubuntu-focal workflow * Fix path to validation file in `build-docker.sh` * Update .github/workflows/rocprofiler-systems-python.yml Co-authored-by: David Galiffi <David.Galiffi@amd.com> * Revert dockerfile * Retire rocprofiler-systems-ubuntu-focal workflow * Include .github directory in cpack workflow sparse-checkout step * Revert git from ubuntu ci image --------- Signed-off-by: David Galiffi <David.Galiffi@amd.com> Signed-off-by: Jason Bonnell <Jason.Bonnell@amd.com> Co-authored-by: David Galiffi <David.Galiffi@amd.com>
48 行
1.5 KiB
YAML
48 行
1.5 KiB
YAML
name: rocprofiler-systems Python Linting
|
|
run-name: Python
|
|
|
|
on:
|
|
push:
|
|
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
|