Skip to content

add chiller results #29

add chiller results

add chiller results #29

Workflow file for this run

name: CI
on:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/[email protected]
- name: Install dependencies
run: |
python -m pip install --upgrade pip
poetry install
- name: Run pre-commit
run: poetry run pre-commit run --all-files
- name: Run pytest
run: poetry run pytest -v --cov-report term-missing --cov