changed getter to generator for readings with support for monthly ret… #12
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: Static analysis | |
on: ["push", "pull_request"] | |
permissions: | |
actions: read | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- run: pip install --upgrade pip isort black | |
- name: Check import order | |
run: isort --profile black --line-length 80 --check moj_elektro_v1* | |
- name: Run Black | |
run: black -S --line-length 80 --check moj_elektro_v1* | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- run: pip install --upgrade pip mypy aiohttp | |
- name: Run mypy | |
run: mypy moj_elektro_v1 | |