diff --git a/.github/workflows/standalone-ci.yml b/.github/workflows/standalone-ci.yml index 5ef1970..4f1aa4c 100644 --- a/.github/workflows/standalone-ci.yml +++ b/.github/workflows/standalone-ci.yml @@ -16,4 +16,7 @@ jobs: - name: Install dependencies run: sudo apt-get install -y build-essential cmake libasio-dev - name: Build and pack - run: pwd && ls && mkdir build && cd build && cmake .. && cmake --build . && cpack + run: pwd && ls && mkdir build && cd build && cmake -DBUILD_TESTS=ON .. && cmake --build . && cpack + - name: Run tests + run: ./build/bin/gtest_all +