Skip to content

Make path to temporary install directory used in test step of PythonPackage easyblock available through environment variable so that it may be used in easyconfigs #4511

Make path to temporary install directory used in test step of PythonPackage easyblock available through environment variable so that it may be used in easyconfigs

Make path to temporary install directory used in test step of PythonPackage easyblock available through environment variable so that it may be used in easyconfigs #4511

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
# fix to this version for develop branch (to avoid needing to fix geant4.py)
pip install --upgrade "flake8"
- name: Run flake8 to verify PEP8-compliance of Python code
run: flake8