diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..8d7f612 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +name: build + +on: push + +jobs: + build: + runs-on: windows-2025 + steps: + - name: Clone repo + uses: actions/checkout@v4 + + - name: Setup msbuild + uses: microsoft/setup-msbuild@v2 + + - name: Build C# SDK + run: msbuild.exe C#\SDK-CS.sln -t:rebuild -p:Configuration=Release -p:Platform=x64 + + - name: Build C++ SDK + run: msbuild.exe C++\SDK-CPP.sln -t:rebuild -p:Configuration=Release -p:Platform=x64