aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorLoki Rautio <lokirautio@gmail.com>2026-03-05 14:11:04 -0600
committerLoki Rautio <lokirautio@gmail.com>2026-03-05 14:11:04 -0600
commitf208a5c80eb02362d960d5d63cef6b32eb3fb4c4 (patch)
tree70bf6f18dec2b34bac4ca3cd6219fa2639680c91 /.github/workflows
parent5c6f09f39578a162652faa6bea1f10f47f6df5d1 (diff)
Add debug action
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/debug-test.yml26
1 files changed, 26 insertions, 0 deletions
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"