Skip to content

update ci with coverage check #12

update ci with coverage check

update ci with coverage check #12

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install build tools
run: |
sudo apt-get update
sudo apt-get install -y build-essential gcovr
- name: Build
run: make
- name: Coverage gate (>=95% lines)
run: make ci