aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/debug-test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/debug-test.yml')
-rw-r--r--.github/workflows/debug-test.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/debug-test.yml b/.github/workflows/debug-test.yml
deleted file mode 100644
index 4acd5fc5..00000000
--- a/.github/workflows/debug-test.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: MSBuild Debug Test
-
-on:
- workflow_dispatch:
- pull_request:
- types: [opened, reopened, synchronize]
- paths-ignore:
- - '.gitignore'
- - '*.md'
- - '.github/*.md'
- 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"