From 70f8c49d354781258d3b8f183170255eef65645f Mon Sep 17 00:00:00 2001 From: Soo Hwan Na Date: Sun, 2 Jun 2024 22:44:20 +0900 Subject: [PATCH] TgBot++: workflows: Add Windows Cli CI --- .github/workflows/windows_client_test.yml | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/windows_client_test.yml diff --git a/.github/workflows/windows_client_test.yml b/.github/workflows/windows_client_test.yml new file mode 100644 index 00000000..b2714615 --- /dev/null +++ b/.github/workflows/windows_client_test.yml @@ -0,0 +1,24 @@ +name: Build TgBot++ Client (Windows) + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + runs-on: windows-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up MSBuild + uses: microsoft/setup-msbuild@v1.1.3 + + - name: Build solution + run: msbuild YourSolution.sln /p:Configuration=Release + \ No newline at end of file