Skip to content

Merge branch 'main' of github.com:easybuilders/easybuild #465

Merge branch 'main' of github.com:easybuilders/easybuild

Merge branch 'main' of github.com:easybuilders/easybuild #465

Workflow file for this run

name: Static Analysis
on: [push, pull_request]
concurrency:
group: ${{format('{0}:{1}:{2}', github.repository, github.ref, github.workflow)}}
cancel-in-progress: true
jobs:
python-linting:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- name: set up Python
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
# Python 3.10 is default in Ubuntu 22.04
python-version: '3.10'
- 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 -j3