Skip to content

fix: sync version sensor state after HA connection loss #46

fix: sync version sensor state after HA connection loss

fix: sync version sensor state after HA connection loss #46

Workflow file for this run

name: Pylint and mypy
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: {}
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Analysing the code with pylint
run: pylint presence-detector.py
- name: Analysing the code with mypy
run: mypy presence-detector.py