Skip to content

Added deprecation warning to README #23

Added deprecation warning to README

Added deprecation warning to README #23

Workflow file for this run

name: pylint
on: [push, pull_request]
jobs:
pylint:
name: Python Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install pylint
run: pip install pylint
- name: Run pylint
run: pylint --reports=y --rcfile .pylintrc *.py