Skip to content

Reconnect every 15 minutes #46

Reconnect every 15 minutes

Reconnect every 15 minutes #46

Workflow file for this run

name: Linter
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install pycodestyle pylint pylint-exit
- name: pycodestyle
run: |
pycodestyle --version
pycodestyle . --ignore=E402,E501,W503,W504
- name: pylint
run: |
python -m pylint --version
pylint $(git ls-files '*.py') || pylint-exit --error-fail $?