Skip to content

Commit 488469c

Browse files
Gwillhevake
authored andcommitted
update github actions
1 parent bec9917 commit 488469c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/cmake.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CMake Build
1+
name: CMake Build and Test
22

33
on:
44
push:
@@ -17,4 +17,6 @@ jobs:
1717
sudo apt install libgtest-dev libgmock-dev libmosquitto-dev
1818
- uses: actions/checkout@v3
1919
- name: build
20-
run: cmake -B build -DCMAKE_INSTALL_PREFIX=$HOME/.tbox && cmake --build build
20+
run: cmake -B build && cmake --build build
21+
- name: test
22+
run: find ./build -name *_test -exec {} \;

.github/workflows/make.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Make Build
1+
name: Make Build and Test
22

33
on:
44
push:
@@ -18,3 +18,5 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- name: build
2020
run: make
21+
- name: test
22+
run: find .build -name test -exec {} \;

0 commit comments

Comments
 (0)