Skip to content

Commit 35309ba

Browse files
committed
Add GitHub Actions build workflow
1 parent 59e3fae commit 35309ba

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
windows:
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
platform: [x86, x64]
13+
runs-on: windows-2025
14+
env:
15+
Platform: ${{ matrix.platform }}
16+
Configuration: Release
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- name: Add MSBuild to PATH
22+
uses: microsoft/setup-msbuild@v1.3.2
23+
24+
- name: Build
25+
run: |
26+
msbuild . /maxCpuCount /warnAsError /property:RunCodeAnalysis=true

0 commit comments

Comments
 (0)