Skip to content

Bump commitizen from 2.42.1 to 3.18.4 #321

Bump commitizen from 2.42.1 to 3.18.4

Bump commitizen from 2.42.1 to 3.18.4 #321

Workflow file for this run

name: Code coverage
on: [push]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.9.12'
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.9.12
- name: Install dependencies
run: |
python -m pip install -U pip
pip install poetry && poetry install
- name: Generate coverage report
run: |
poetry run pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/reports/
env_vars: OS,PYTHON
fail_ci_if_error: true
files: ./coverage.xml,./coverage1.xml,./coverage2.xml
flags: pytest
name: codecov-umbrella
verbose: true