We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bec9917 commit 488469cCopy full SHA for 488469c
.github/workflows/cmake.yml
@@ -1,4 +1,4 @@
1
-name: CMake Build
+name: CMake Build and Test
2
3
on:
4
push:
@@ -17,4 +17,6 @@ jobs:
17
sudo apt install libgtest-dev libgmock-dev libmosquitto-dev
18
- uses: actions/checkout@v3
19
- name: build
20
- run: cmake -B build -DCMAKE_INSTALL_PREFIX=$HOME/.tbox && cmake --build build
+ run: cmake -B build && cmake --build build
21
+ - name: test
22
+ run: find ./build -name *_test -exec {} \;
.github/workflows/make.yml
-name: Make Build
+name: Make Build and Test
@@ -18,3 +18,5 @@ jobs:
run: make
+ run: find .build -name test -exec {} \;
0 commit comments