diff options
| author | qwasdrizzel <145519042+qwasdrizzel@users.noreply.github.com> | 2026-03-05 17:17:45 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-05 17:17:45 -0600 |
| commit | 0666959d312dc74903f55d1071488a90239330f1 (patch) | |
| tree | 5c6886f7ec65a7828bc6e34a469514e418bcf78b /.github/workflows/debug-test.yml | |
| parent | 9370cbc7d878df1615d8ce76bc459e8b414d0f19 (diff) | |
| parent | eed770b121aa4ce38f002db042d0137c24c6d344 (diff) | |
Merge branch 'smartcmd:main' into main
Diffstat (limited to '.github/workflows/debug-test.yml')
| -rw-r--r-- | .github/workflows/debug-test.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/debug-test.yml b/.github/workflows/debug-test.yml new file mode 100644 index 00000000..4acd5fc5 --- /dev/null +++ b/.github/workflows/debug-test.yml @@ -0,0 +1,32 @@ +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" |
