diff --git a/.github/workflows/standalone.yml b/.github/workflows/standalone.yml index 115dd84..8022612 100644 --- a/.github/workflows/standalone.yml +++ b/.github/workflows/standalone.yml @@ -35,5 +35,10 @@ jobs: - name: build run: cmake --build build -j4 - - name: run + - name: run on unix-like + if: startsWith(matrix.os, 'macOS') || startsWith(matrix.os,'ubuntu') run: ./build/Greeter + + - name: run on windows + if: startsWith(matrix.os, 'windows') + run: ./build/Debug/Greeter.exe