From 42c9706ca523b7d879c47bde586b9b569c07ca7c Mon Sep 17 00:00:00 2001 From: Danil <119668441+Jiga228@users.noreply.github.com> Date: Fri, 24 Oct 2025 17:09:58 +0700 Subject: [PATCH] Add tests for windows --- .github/workflows/windows-test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/windows-test.yml diff --git a/.github/workflows/windows-test.yml b/.github/workflows/windows-test.yml new file mode 100644 index 0000000..5dfb794 --- /dev/null +++ b/.github/workflows/windows-test.yml @@ -0,0 +1,24 @@ +# This starter workflow is for a CMake project running on a single platform. There is a different starter workflow if you need cross-platform coverage. +# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml +name: CMake on a single platform + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v4 + + - name: Build tests + # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. + # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type + run: build_tests.bat + - name: Start tests + run: ./build/bin/Release/Tests.exe +