Skip to content

rpm->rps

rpm->rps #146

Workflow file for this run

name: codecov
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Test with pytest
run: |
poetry run pytest --cov=./ --cov-report=xml
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true # optional (default = false)
file: ./coverage.xml
flags: unittests # optional
name: codecov-pDESy # optional
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)