Skip to content

only update oled when new text #167

only update oled when new text

only update oled when new text #167

Workflow file for this run

---
name: Pylint
on: [push]
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |-
pylint --fail-under=4 $(git ls-files '*.py')