Merge pull request #890 from boegel/eb491 #434
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up Python | |
uses: actions/setup-python@v4 | |
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 -j3 |