Skip to content

chore: bump UT to version 2.1.0 (#171) #149

chore: bump UT to version 2.1.0 (#171)

chore: bump UT to version 2.1.0 (#171) #149

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
test-project:
name: Test Project
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Configure Project
uses: threeal/[email protected]
with:
options: MY_FIBONACCI_ENABLE_TESTS=ON
- name: Build Project
run: cmake --build build
- name: Test Project
uses: threeal/[email protected]
with:
build-config: Debug
- name: Check Coverage
if: ${{ matrix.os != 'windows' }}
uses: threeal/[email protected]
with:
excludes: build/*
fail-under-line: 100