diff options
-rw-r--r-- | .github/workflows/build-macos.yml | 2 | ||||
-rw-r--r-- | .github/workflows/build-ubuntu.yml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index cd64b57..eda49af 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -36,3 +36,5 @@ jobs: # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + - name: Run + run: ${{github.workspace}}/build/mscp -h diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index a871f9a..4fae437 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -31,3 +31,5 @@ jobs: # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + - name: Run + run: ${{github.workspace}}/build/mscp -h |