We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85cc836 commit 2dc7e05Copy full SHA for 2dc7e05
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,26 @@
1
+name: main
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
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
0 commit comments