Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Support for Home Assistant 2023.8.1 - Bump dependencies #28

Support for Home Assistant 2023.8.1 - Bump dependencies

Support for Home Assistant 2023.8.1 - Bump dependencies #28

Workflow file for this run

name: Pytest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install requirements
run: pip install -r requirements_test.txt
- name: Test with pytest
run: pytest