Add support for the 2022 entity model in HA #15
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: PR Checks | |
on: pull_request | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
container: python:3.12 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: pip install -e .; pip install pytest | |
- name: Run pytest | |
run: pytest |