Merge pull request #1097 from stevencohn/1083-correct-darkmode-plaintext #92
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: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: GuillaumeFalourd/setup-windows10-sdk-action@v1 | |
with: | |
sdk-version: 19041 | |
#- name: Setup MSBuild | |
# uses: microsoft/setup-msbuild@v1 | |
- name: Setup devenv | |
uses: seanmiddleditch/gha-setup-vsdevenv@master | |
- name: Install VSIX | |
shell: powershell | |
run: .\install-vsix.ps1 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v1.0.5 | |
#- name: Setup VSTest | |
# uses: darenm/Setup-VSTest@v1 | |
- name: Navigate to Workspace | |
run: cd $GITHUB_WORKSPACE | |
- name: Restore Packages | |
run: nuget restore OneMore.sln | |
#- name: Build Solution | |
# run: | | |
# msbuild.exe Sandbox.sln /p:platform="Any CPU" /p:configuration="Release" | |
#- name: Run Tests | |
# run: vstest.console.exe .\tests\Sandbox.Tests\bin\Release\Sandbox.Tests.dll | |
- name: Build solution | |
shell: powershell | |
run: .\build.ps1 | |
#- name: Upload installer | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: installer | |
# path: %temp%\onemore_v_x64.msi |