Skip to content

Merge pull request #14318 from sassy-crick/20211110153851_new_pr_Kent… #342

Merge pull request #14318 from sassy-crick/20211110153851_new_pr_Kent…

Merge pull request #14318 from sassy-crick/20211110153851_new_pr_Kent… #342

Workflow file for this run

name: Static Analysis
on: [push, pull_request]
jobs:
python-linting:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: set up Python
uses: actions/setup-python@v1
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