feat: add support to assert commands call not to receive errors (#287) #517
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: | |
test-project: | |
name: Test Project | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v4.2.1 | |
- name: Configure Project | |
run: cmake --preset development | |
- name: Test Project | |
run: ctest --preset development |