Skip to content

add print and logger statements #169

add print and logger statements

add print and logger statements #169

Workflow file for this run

name: Python Unit Tests with Coverage
on:
push:
branches: '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install test libraries
run: pip install -r tests/requirements.test.txt
- name: Install poetry package packages
run: poetry install
- name: Run tests with coverage
run: coverage run -m pytest
- name: Generate coverage report
run: coverage report -m