From f208a5c80eb02362d960d5d63cef6b32eb3fb4c4 Mon Sep 17 00:00:00 2001 From: Loki Rautio Date: Thu, 5 Mar 2026 14:11:04 -0600 Subject: Add debug action --- .github/workflows/debug-test.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/debug-test.yml (limited to '.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" -- cgit v1.2.3 From 9e52beaa9d97bf4258ecb19e1e3fc53fa1bd0bd2 Mon Sep 17 00:00:00 2001 From: Loki Rautio Date: Thu, 5 Mar 2026 14:12:31 -0600 Subject: Support debug compile test in PRs --- .github/workflows/debug-test.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.github/workflows/debug-test.yml') diff --git a/.github/workflows/debug-test.yml b/.github/workflows/debug-test.yml index 7bde131d..0669a52f 100644 --- a/.github/workflows/debug-test.yml +++ b/.github/workflows/debug-test.yml @@ -2,6 +2,12 @@ name: MSBuild Debug Test on: workflow_dispatch: + pull_request: + types: [opened, synchronize, reopened, closed] + paths-ignore: + - '.gitignore' + - '*.md' + - '.github/*.md' push: branches: - 'main' -- cgit v1.2.3 From f48a39ae3d72fc47ed3a050f6419716dc398d8f5 Mon Sep 17 00:00:00 2001 From: Loki Rautio Date: Thu, 5 Mar 2026 14:33:33 -0600 Subject: Adjust github action for debug --- .github/workflows/debug-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/debug-test.yml') diff --git a/.github/workflows/debug-test.yml b/.github/workflows/debug-test.yml index 0669a52f..4acd5fc5 100644 --- a/.github/workflows/debug-test.yml +++ b/.github/workflows/debug-test.yml @@ -3,7 +3,7 @@ name: MSBuild Debug Test on: workflow_dispatch: pull_request: - types: [opened, synchronize, reopened, closed] + types: [opened, reopened, synchronize] paths-ignore: - '.gitignore' - '*.md' -- cgit v1.2.3