Skip to content

topaz (from upstream) #871

topaz (from upstream)

topaz (from upstream) #871

Workflow file for this run

name: Static Analysis
on: [pull_request]
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
pip install --upgrade flake8
- name: Run flake8 to verify PEP8-compliance of Python code
run: flake8