Skip to content

Implement inverter.py own logger / Python 3.9 retro-compatibility / Restore .connected attribute #49

Implement inverter.py own logger / Python 3.9 retro-compatibility / Restore .connected attribute

Implement inverter.py own logger / Python 3.9 retro-compatibility / Restore .connected attribute #49

Workflow file for this run

name: Python Build
on:
push:
branches:
- main
tags-ignore:
- '**'
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test package
run: |
python -m unittest discover tests