Skip to content

Merge pull request #345 from Blueprints-org/344-feature-request-add-f… #256

Merge pull request #345 from Blueprints-org/344-feature-request-add-f…

Merge pull request #345 from Blueprints-org/344-feature-request-add-f… #256

name: Code Coverage
on:
push:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.11' ]
name: Code coverage with python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: pip install --upgrade pip
- name: Install package
run: python -m pip install -e .[dev]
- name: Generate coverage report
run: |
pip install pytest
pip install pytest-cov
pytest --cov=./blueprints --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true