phase powers and currents added #1495
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python application | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 pytest paho-mqtt requests-mock jq pyjwt==2.6.0 bs4 pkce typing_extensions python-dateutil==2.8.2 | |
- name: Flake8 with annotations in packages folder | |
uses: TrueBrain/actions-flake8@v2.1 | |
with: | |
path: packages | |
flake8_version: 5.0.4 | |
- name: Flake8 with annotations in runs folder | |
uses: TrueBrain/actions-flake8@v2.1 | |
with: | |
path: runs | |
flake8_version: 5.0.4 | |
- name: Test with pytest | |
run: | | |
PYTHONPATH=packages python -m pytest packages --log-cli-level=DEBUG | |
PYTHONPATH=runs python -m pytest packages --log-cli-level=DEBUG |