Add errors::nil
Function
#44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
check-project: | |
name: Check Project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Configure Project | |
uses: threeal/cmake-action@v1.3.0 | |
with: | |
options: BUILD_TESTING=ON | |
- name: Check Format | |
run: | | |
cmake --build build --target format | |
git diff --exit-code HEAD | |
test-project: | |
name: Test Project | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu, windows] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Configure Project | |
uses: threeal/cmake-action@v1.3.0 | |
with: | |
options: BUILD_TESTING=ON | |
- name: Build Project | |
run: cmake --build build | |
- name: Test Project | |
run: ctest --test-dir build --output-on-failure --no-tests=error | |
- name: Check Coverage | |
if: ${{ matrix.os != 'windows' }} | |
uses: threeal/gcovr-action@v1.0.0 | |
with: | |
excludes: | | |
build/* | |
test/* | |
fail-under-line: 100 |