Merge pull request #165 from Soulflare3/patch-1 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
Build: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v1 | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
- name: Restore packages | |
run: msbuild WindowsGSM.sln /t:restore | |
- name: Build with MSBuild | |
run: msbuild WindowsGSM.sln |