Skip to content

Initial commit

Initial commit #4

Workflow file for this run

name: lint
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:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install flake8
run: pip install flake8
- name: Check PEP8 compliance
run: flake8 . --count --ignore=E501