Skip to content

Updates for Websocket client #144

Updates for Websocket client

Updates for Websocket client #144

Workflow file for this run

name: Home Agent
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Pylint
run: |
pylint -rn *.py
- name: UnitTest
run: |
python -m unittest discover