1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 13:41:13 +02:00

fix: windows compilation

This commit is contained in:
Alexandre Tolstenko 2022-12-02 10:00:39 -05:00
parent 21320e29ef
commit 1bfe0ea600

View file

@ -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