Skip to content

Rewrite BulbDevice and rework set_multiple_values() #540

Rewrite BulbDevice and rework set_multiple_values()

Rewrite BulbDevice and rework set_multiple_values() #540

Workflow file for this run

name: Contrib Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-20.04"
env:
USING_COVERAGE: '3.6,3.8'
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade cryptography requests colorama
- name: "Run testcontrib.py on ${{ matrix.python-version }}"
run: "python -m testcontrib.py"