Skip to content

{lib, data, numlib, tools, math}[GCCcore/13.3.0, foss/2024a, gfbf/2024a] libmad-0.15.1b, SoX-14.4.2, SuiteSparse-7.8.2, Szip-2.1.1, sympy-1.13.2, trimesh-4.4.9, Voro++-0.4.6, Xerces-C++-3.2.5, zsh-5.9 #31116

{lib, data, numlib, tools, math}[GCCcore/13.3.0, foss/2024a, gfbf/2024a] libmad-0.15.1b, SoX-14.4.2, SuiteSparse-7.8.2, Szip-2.1.1, sympy-1.13.2, trimesh-4.4.9, Voro++-0.4.6, Xerces-C++-3.2.5, zsh-5.9

{lib, data, numlib, tools, math}[GCCcore/13.3.0, foss/2024a, gfbf/2024a] libmad-0.15.1b, SoX-14.4.2, SuiteSparse-7.8.2, Szip-2.1.1, sympy-1.13.2, trimesh-4.4.9, Voro++-0.4.6, Xerces-C++-3.2.5, zsh-5.9 #31116

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-20.04
steps:
- uses: actions/checkout@v2
- name: set up Python
uses: actions/setup-python@v2
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 --filename '*.eb'