Skip to content

Commit 39936cc

Browse files
committed
Add GitHub Actions CI
1 parent 834dea4 commit 39936cc

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build
2+
3+
on:
4+
push
5+
6+
jobs:
7+
build:
8+
9+
runs-on: windows-latest
10+
11+
strategy:
12+
matrix:
13+
architecture: [ Win32, x64, ARM64 ]
14+
configuration: [ Debug, Release ]
15+
fail-fast: false
16+
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
- name: Add msbuild to PATH
21+
uses: microsoft/setup-msbuild@v2
22+
- name: Build
23+
run: msbuild -restore -p:RestorePackagesConfig=true -p:Configuration=${{ matrix.configuration }} -p:Platform=${{ matrix.architecture }} -clp:ForceConsoleColor -warnaserror ${{ github.workspace }}\IExplorerCommand_Examples.sln

0 commit comments

Comments
 (0)