Skip to content

Deprecate the Clang Easyblock in Favor of the LLVM one for newer (>=18.1.6) versions of LLVM #5232

Deprecate the Clang Easyblock in Favor of the LLVM one for newer (>=18.1.6) versions of LLVM

Deprecate the Clang Easyblock in Favor of the LLVM one for newer (>=18.1.6) versions of LLVM #5232

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