Skip to content

build(deps-dev): bump the pip group with 2 updates #124

build(deps-dev): bump the pip group with 2 updates

build(deps-dev): bump the pip group with 2 updates #124

name: Run PyTests and Coverage
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run tests with coverage
run: |
poetry run coverage run -m pytest
poetry run coverage report
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: htmlcov/