Skip to content

Commit 8226a34

Browse files
Add tests
1 parent e5a3370 commit 8226a34

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/build-linux.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,19 @@ jobs:
3232
restore-keys: |
3333
${{ runner.os }}-apt-${{ hashFiles('**/CMakeLists.txt') }}
3434
35+
- name: Install dependencies
36+
run: |
37+
sudo apt-get update
38+
sudo apt-get install -y \
39+
libgtest-dev
40+
3541
- name: Build
3642
run: |
3743
cd heidpi-logger
3844
cmake .
39-
make
45+
make
46+
47+
- name: Test
48+
run: |
49+
cd heidpi-logger
50+
ctest

0 commit comments

Comments
 (0)