From 4ff57c87dd7da9338c68133145e18e746963dc38 Mon Sep 17 00:00:00 2001 From: Daniel Stevens Date: Mon, 17 Nov 2025 18:21:17 -0700 Subject: [PATCH] Add GitHub Actions build workflow --- .github/workflows/build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..ade2b2a --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build + +on: + push: + workflow_dispatch: + +jobs: + windows: + strategy: + fail-fast: false + matrix: + config: [Debug, Release] + runs-on: windows-2025 + env: + Platform: x86 + Configuration: ${{ matrix.config }} + + steps: + - uses: actions/checkout@v4 + + - name: Add MSBuild to PATH + uses: microsoft/setup-msbuild@v1.3.2 + + - name: Build + run: | + msbuild . /maxCpuCount /property:RunCodeAnalysis=true