Skip to content

Commit

Permalink
Enable tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Korotkov authored and Konstantin Korotkov committed Aug 15, 2024
1 parent 25b8b42 commit aa2d64a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/netlicesning-client-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,17 @@ jobs:
apt-get update
apt-get upgrade -y
- name: Install required dependencies
run: apt-get install -y git g++ cmake libcurl4-openssl-dev
run: apt-get install -y git g++ cmake libcurl4-openssl-dev libboost-all-dev
- name: Build with CMake
run: |
mkdir build
cd build
cmake ..
cmake .. -DBUILD_TESTS=yes
make
- name: Run tests
run: |
cd tests
./run_tests
- name: Run Demo App
run: |
cd build
Expand Down

0 comments on commit aa2d64a

Please sign in to comment.