Skip to content

deps: update econnect-python version 0.12.0 #324

deps: update econnect-python version 0.12.0

deps: update econnect-python version 0.12.0 #324

Workflow file for this run

name: 'Testing'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
econnect:
runs-on: ubuntu-latest
env:
TOX_SKIP_ENV: lint
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: |
3.11
3.12
- name: Upgrade pip and install required tools
run: |
pip install --upgrade pip
pip install tox
- name: Install Home Assistant testing platform
run: |
./scripts/download_fixtures.sh $(curl --silent "https://api.github.com/repos/home-assistant/core/releases/latest" | grep -Po "(?<=\"tag_name\": \").*(?=\")")
- name: Test with tox environments
run: tox
- name: Update Coveralls report
uses: coverallsapp/github-action@v2