aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/debug-test.yml
blob: 0669a52fed9fe975de16b8c67e58b363383749db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: MSBuild Debug Test

on:
  workflow_dispatch: 
  pull_request:
    types: [opened, synchronize, reopened, closed]
    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"