diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-11-13 17:57:50 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-11-13 17:57:50 +0900 |
commit | 613961b71dea603cb70515a285c3ae8111c23678 (patch) | |
tree | bc761e8f2a5d70f8fa9b239483ac6e7e346e2b84 /.github | |
parent | 8719b356942d4997252c2705795485c7af7fd4f0 (diff) |
run mscp -h last on ci build
Diffstat (limited to '.github')
-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 |