Add a message copy test and add a test timeout #140
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: C/C++ CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: cmake configure | |
run: cmake . | |
- name: cmake build | |
run: cmake --build . | |
linux-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: cmake configure | |
run: cmake . | |
- name: cmake build | |
run: cmake --build . | |
- name: Run Tests | |
run: cd tests && ctest -VV |