Split off RecursiveMutex from Mutex #1800
Workflow file for this run
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [ opened, synchronize, reopened ] | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout repo" | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - name: "Configure Project" | |
| uses: threeal/cmake-action@v1.3.0 | |
| - name: "Prepare Project" | |
| run: cmake -S ./ -B build | |
| - name: "Build Tests" | |
| run: cmake --build build --target build-tests | |
| - name: "Run TactilityCore Tests" | |
| run: build/Tests/TactilityCore/TactilityCoreTests --exit | |
| - name: "Run TactilityHeadless Tests" | |
| run: build/Tests/Tactility/TactilityTests --exit |