Refactor services into classes #567
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: Tests | |
on: [push] | |
jobs: | |
Run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repo" | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: "Configure Project" | |
uses: threeal/[email protected] | |
- name: "Prepare Project" | |
run: cmake -S ./ -B build | |
- name: "Build Tests" | |
run: cmake --build build --target build-tests | |
- name: "Run Tests" | |
run: build/Tests/TactilityCore/TactilityCoreTests --exit |