We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f92ba01 commit f51c8ccCopy full SHA for f51c8cc
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,25 @@
1
+name: windows build
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: windows-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
16
+ - name: Add MSBuild to PATH
17
+ uses: microsoft/setup-msbuild@v1.0.0
18
19
+ - name: Build everything
20
+ run: |
21
+ & .\eng\build.ps1 -build $true
22
23
+ - name: Test artifact publishing
24
25
+ & .\eng\build.ps1 -build $false -publish $true
0 commit comments