Skip to content

cmake: add test coverage generation #186

cmake: add test coverage generation

cmake: add test coverage generation #186

Workflow file for this run

name: 'Build'
on: push
jobs:
build:
runs-on: ubuntu-24.04
container:
image: giomba/ceda-cemu-builder:4
options: --user root
steps:
- name: Checkout repository
uses: actions/checkout@v3.0.2
- name: Software quality
run: |
script/format -n
- name: Build
run: |
git config --global --add safe.directory /__w/ceda-cemu/ceda-cemu
git submodule init
git submodule update
script/build
- name: Test
run: |
script/test
- name: Coverage
run: |
script/coverage