From f208a5c80eb02362d960d5d63cef6b32eb3fb4c4 Mon Sep 17 00:00:00 2001 From: Loki Rautio Date: Thu, 5 Mar 2026 14:11:04 -0600 Subject: [PATCH] Add debug action --- .github/workflows/debug-test.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/debug-test.yml diff --git a/.github/workflows/debug-test.yml b/.github/workflows/debug-test.yml new file mode 100644 index 00000000..7bde131d --- /dev/null +++ b/.github/workflows/debug-test.yml @@ -0,0 +1,26 @@ +name: MSBuild Debug Test + +on: + workflow_dispatch: + push: + branches: + - 'main' + paths-ignore: + - '.gitignore' + - '*.md' + - '.github/*.md' + +jobs: + build: + name: Build Windows64 (DEBUG) + runs-on: windows-latest + + steps: + - name: Checkout + uses: actions/checkout@v6 + + - name: Setup msbuild + uses: microsoft/setup-msbuild@v2 + + - name: Build + run: MSBuild.exe MinecraftConsoles.sln /p:Configuration=Debug /p:Platform="Windows64"