diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4213287..dc59aa0 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -29,9 +29,9 @@ jobs: env: CXX: ${{matrix.conf.compiler}} run: | - g++ examples/scalars.cpp -O3 --std=c++17 - ./a.out - g++ examples/xor_classification.cpp --std=c++17 - ./a.out - g++ examples/xor_regression.cpp --std=c++17 - ./a.out + g++ examples/scalars.cpp -O3 --std=c++17 -o out.exe + out.exe + g++ examples/xor_classification.cpp --std=c++17 -o out.exe + out.exe + g++ examples/xor_regression.cpp --std=c++17 -o out.exe + out.exe