8000 Update README.md with examples and tips #492 · jasonacox/tinytuya@db9680d · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update README.md with examples and tips #492 #481

< 8262 a rel="nofollow" class="btn" data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"workflow logs","repository_id":null,"auth_type":"LOG_IN","originating_url":"https://github.com/jasonacox/tinytuya/actions/runs/8996052039/workflow","user_id":null}}" data-hydro-click-hmac="c5de8d237621ea719fd3c927a370513b2121732166c490eb0c7bcb4357bd6298" href="/login?return_to=https%3A%2F%2Fgithub.com%2Fjasonacox%2Ftinytuya%2Factions%2Fruns%2F8996052039%2Fworkflow">Sign in to view logs

Update README.md with examples and tips #492

Update README.md with examples and tips #492 #481

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"]
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"
0