Skip to content

Merge pull request #22520 from bartoldeman/20250311152552_new_pr_NCCL283 #34887

Merge pull request #22520 from bartoldeman/20250311152552_new_pr_NCCL283

Merge pull request #22520 from bartoldeman/20250311152552_new_pr_NCCL283 #34887

Workflow file for this run

name: Static Analysis
on: [push, pull_request]
permissions:
contents: read # to fetch code (actions/checkout)
concurrency:
group: ${{format('{0}:{1}:{2}', github.repository, github.ref, github.workflow)}}
cancel-in-progress: true
jobs:
python-linting:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- name: set up Python
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: 3.8
- name: install Python packages
run: |
pip install --upgrade pip
pip install --upgrade flake8
- name: Run flake8 to verify PEP8-compliance of Python code
run: flake8
- name: Run flake8 to verify PEP8-compliance of Easyconfigs
run: flake8 --select F,W605,W291 --filename '*.eb'