Added inverter temperature for X1 Hybrid G4 #319
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: tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install . | |
pip install --upgrade flake8 pylint pytest pytest-cov pytest-asyncio pytest-httpserver black mypy isort | |
- name: Check code style with black | |
run: | | |
black --check . | |
- name: Check types with mypy | |
run: | | |
mypy . | |
- name: Check imports with isort | |
run: | | |
isort --check-only --profile black . | |
- name: Lint with flake8 | |
run: | | |
flake8 --ignore=E501,E704 solax tests | |
- name: Lint with pylint | |
run: | | |
pylint -d 'C0111' solax tests | |
- name: Test with pytest | |
run: | | |
pytest --cov=solax --cov-branch --cov-report=term-missing . | |
mv .coverage .coverage.${{ matrix.python-version }} | |
- name: Upload coverage | |
uses: actions/upload-artifact@v4 | |
with: | |
name: .coverage-${{ matrix.python-version }} | |
path: .coverage.${{ matrix.python-version }} | |
if-no-files-found: error | |
coverage: | |
runs-on: ubuntu-latest | |
needs: [build] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Download coverage files | |
uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
- name: Coverage combine | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade coverage | |
coverage combine | |
coverage report -m --fail-under=100 |