Skip to content

Commit c0fdc16

Browse files
kkorotkovr-brown
authored andcommitted
Enable tests in CI
1 parent b76abf5 commit c0fdc16

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/netlicesning-client-ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,17 @@ jobs:
2121
apt-get update
2222
apt-get upgrade -y
2323
- name: Install required dependencies
24-
run: apt-get install -y git g++ cmake libcurl4-openssl-dev
24+
run: apt-get install -y git g++ cmake libcurl4-openssl-dev libboost-all-dev
2525
- name: Build with CMake
2626
run: |
2727
mkdir build
2828
cd build
29-
cmake ..
29+
cmake .. -DBUILD_TESTS=yes
3030
make
31+
- name: Run tests
32+
run: |
33+
cd tests
34+
./run_tests
3135
- name: Run Demo App
3236
run: |
3337
cd build

0 commit comments

Comments
 (0)