chore: bump UT to version 2.3.1 (#204) #212
This file contains hidden or 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: | |
| test-project: | |
| name: Test Project | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-24.04, windows-2022] | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Configure Project | |
| uses: threeal/[email protected] | |
| with: | |
| options: MY_FIBONACCI_ENABLE_TESTS=ON | |
| run-build: false | |
| - 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-2022' }} | |
| uses: threeal/[email protected] | |
| with: | |
| excludes: build/* | |
| fail-under-line: 100 |