diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef2f0d6..1fc0784 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,16 +32,16 @@ jobs: make make test || ctest --rerun-failed --output-on-failure test_msvc: - name: Run CMake MSVC Test 🧪 + name: Run CMake Test on Windows (MSVC) 🧪 runs-on: windows-latest steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v2 - name: Build and Run 64bit Tests run: | mkdir build && cd ./build cmake .. -DBUILD=test -G "Visual Studio 17 2022" -A x64 cmake --build . - .\test\Debug\wrap_test.exe --rerun-failed --output-on-failure \ No newline at end of file + ctest --rerun-failed --output-on-failure \ No newline at end of file