Fix vsix version #40
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: windows build & test | |
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/setup-msbuild@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
- name: Build everything | |
run: | | |
& .\eng\build.ps1 -build $true | |
- name: Add VSTest.Console.exe to PATH | |
uses: darenm/Setup-VSTest@v1 | |
- name: Run unit tests | |
run: | | |
& .\eng\build.ps1 -build $false -test $true | |
- name: Test artifact publishing | |
run: | | |
& .\eng\build.ps1 -build $false -test $false -publish $true |