Skip to content

build(deps-dev): bump pytest-cov from 4.1.0 to 6.0.0 #98

build(deps-dev): bump pytest-cov from 4.1.0 to 6.0.0

build(deps-dev): bump pytest-cov from 4.1.0 to 6.0.0 #98

Workflow file for this run

name: Pipeline
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Copy files
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --without doc
- name: Run tests
run: poetry run task test --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}