Skip to content

build(deps-dev): bump gitpython from 3.1.34 to 3.1.35 (#285) #1582

build(deps-dev): bump gitpython from 3.1.34 to 3.1.35 (#285)

build(deps-dev): bump gitpython from 3.1.34 to 3.1.35 (#285) #1582

Workflow file for this run

name: Run unit tests
on: [push, pull_request]
jobs:
unit-tests:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.4.2
- name: Install dependencies
run: |
poetry install --with dev
- name: Run tests
run: |
poetry run pytest --cov=hm_pyhelper --cov-fail-under=90