aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-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"