Skip to content

Pep8 compliance standards in progress 2 #6

Pep8 compliance standards in progress 2

Pep8 compliance standards in progress 2 #6

Workflow file for this run

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install colorama readchar
pip install git+https://github.com/lammmab/event_emitter.git
- name: Run pylint
run: pylint $(git ls-files '*.py')