Skip to content

Bump the dependencies group across 1 directory with 4 updates #56

Bump the dependencies group across 1 directory with 4 updates

Bump the dependencies group across 1 directory with 4 updates #56

Workflow file for this run

name: Python - Test coverage
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11.x]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pipenv wheel
pipenv install --deploy --dev
- name: Check test coverage with Python ${{ matrix.python-version }}
run: |
pipenv run coverage run -m pytest
pipenv run coverage report --fail-under=90