Skip to content

Minor correction for PEP8 compliance. #95

Minor correction for PEP8 compliance.

Minor correction for PEP8 compliance. #95

Workflow file for this run

name: pep8
on:
push:
branches: [ "stable" ]
paths:
- 'tests/test_MetaDetective.py'
- 'src/MetaDetective/MetaDetective.py'
pull_request:
branches: [ "stable" ]
paths:
- 'tests/test_MetaDetective.py'
- 'src/MetaDetective/MetaDetective.py'
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install flake8
run: pip install flake8
- name: Check PEP8 compliance
run: flake8 . --count --ignore=E501