Skip to content

build(deps-dev): bump pytest from 8.2.2 to 8.3.3 #148

build(deps-dev): bump pytest from 8.2.2 to 8.3.3

build(deps-dev): bump pytest from 8.2.2 to 8.3.3 #148

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/