Skip to content

Fix battery calculation #57

Fix battery calculation

Fix battery calculation #57

Workflow file for this run

name: Linting
on:
workflow_call:
pull_request:
jobs:
lint:
name: Lint code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: 3.11
- uses: snok/install-poetry@v1
- name: Install Dependencies
run: poetry install
- name: Run linters
run: poetry run make lint
- name: Run tests
run: poetry run pytest