Add tea file #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [ push, pull_request ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- run: pip install mypy pylint requests types-requests sseclient | |
- run: pylint nanoleafapi/nanoleaf nanoleafapi/discovery nanoleafapi/digital_twin | |
- run: mypy nanoleafapi/nanoleaf.py nanoleafapi/discovery.py nanoleafapi/digital_twin.py |