Skip to content

chore: bump pytest-cov from 4.1.0 to 5.0.0 #1398

chore: bump pytest-cov from 4.1.0 to 5.0.0

chore: bump pytest-cov from 4.1.0 to 5.0.0 #1398

Workflow file for this run

name: Codecov
on:
pull_request:
push:
branches:
- master
- development
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install Poetry
uses: snok/install-poetry@v1.3.1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: poetry install --with test,docs,dev -vvv --no-interaction
- name: Run nox
- run: nox --sessions coverage
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}