Skip to content

725.conflict resolution #1

725.conflict resolution

725.conflict resolution #1

Workflow file for this run

name: Coverage
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
coverage:
strategy:
matrix:
python-version:
- "3.11"
runs-on: ubuntu-20.04
steps:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install coverage cuvner
- name: Download Unit Coverage
uses: actions/download-artifact@v4
with:
name: linux-unit-coverage
- name: Rename Artifact
run: mv .coverage .coverage-unittest
- name: Download Integration Coverage
uses: actions/download-artifact@v4
with:
name: linux-integration-coverage
- name: Rename Artifact
run: mv .coverage .coverage-integration
- name: Combine
run: coverage combine
- name: Graph
shell: bash
run: |
git diff origin/main..HEAD > p
cuv report p