[ENH] Heating temperature populated from redis #17
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: Python testing | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install poetry and dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry==1.8.2 | |
poetry install -v --no-root | |
- name: Test with pytest | |
run: | | |
poetry install --with dev | |
poetry run pytest |