Unit test attempt #1
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: Build and Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Configure and build with CMake | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . | |
- name: Run unit tests | |
run: | | |
cd build | |
./Software/test/Debug/events_test.exe |