Skip to content

Commit 2dc7e05

Browse files
committed
Add CI
1 parent 85cc836 commit 2dc7e05

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/main.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: main
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: windows-latest
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
17+
- name: Restore NuGet
18+
run: nuget restore
19+
working-directory: ./Source
20+
21+
- name: Setup MSBuild
22+
uses: microsoft/setup-msbuild@v1
23+
24+
- name: Build with MSBuild
25+
run: msbuild /t:ExplorerCommand;glTF;Tests /p:Configuration=Release /p:Platform=x64 /m
26+
working-directory: ./Source

0 commit comments

Comments
 (0)