Implement device triggers and calendars for exams and homework #175
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: Check lint | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install black | |
run: pip install black | |
- name: Check black | |
run: black --check custom_components/vulcan/ | |
- name: Install isort | |
run: pip install isort | |
- name: Check isort | |
run: isort --profile black custom_components/vulcan/ --check-only |