From 8448c86072bcf864a108cd056390d898a97ed8eb Mon Sep 17 00:00:00 2001 From: Przemyslaw Rokosz Date: Mon, 19 Aug 2024 14:37:17 +0200 Subject: [PATCH] added check that binary can be started to CI --- .github/workflows/build-and-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 4169814..7449056 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -33,6 +33,10 @@ jobs: - name: Build binary run: cmake --build ${{github.workspace}}/build --target vgraph + - name: Binary can be started + working-directory: ${{github.workspace}}/build + run: ./vgraph -h + - name: Build unit tests run: cmake --build ${{github.workspace}}/build --target vgraph_test