Skip to content

Commit

Permalink
Created build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bmenees committed Mar 27, 2020
1 parent f92ba01 commit f51c8cc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: windows build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: Add MSBuild to PATH
uses: microsoft/[email protected]

- name: Build everything
run: |
& .\eng\build.ps1 -build $true
- name: Test artifact publishing
run: |
& .\eng\build.ps1 -build $false -publish $true

0 comments on commit f51c8cc

Please sign in to comment.