From 780f8485a922e718f273edb55aead5ac3f6b7e99 Mon Sep 17 00:00:00 2001 From: Du Ruixiang <50311081+rdu-weston@users.noreply.github.com> Date: Sun, 16 Aug 2020 18:10:59 +0800 Subject: [PATCH] Update standalone-ci.yml added test run --- .github/workflows/standalone-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 +