Skip to content

Adapt loader to convert cumulative kWh to power (kW) #21

Adapt loader to convert cumulative kWh to power (kW)

Adapt loader to convert cumulative kWh to power (kW) #21

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry config virtualenvs.create false
poetry install --with dev
poetry run setup
- name: Run Pre-commit checks
uses: pre-commit/action@v3.0.1
with:
extra_args: --all-files --show-diff-on-failure