Add tests workflow #18
Workflow file for this run
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: Run Tests | |
on: | |
push: | |
pull_request: | |
type: [ labeled ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v1 | |
with: | |
vs-version: 'latest' | |
- name: Cache NuGet packages # optimizing the build process | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.nuget/packages | |
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj') }} | |
restore-keys: | | |
nuget-${{ runner.os }}- | |
- name: Restore dependencies | |
run: | | |
dotnet restore | |
nuget restore | |
- name: Download JFrog CLI executable | |
env: | |
JFROG_CLI_VERSION: '2.67.0' # jfrog cli version can be changed here | |
run: | | |
.\JFrogVSExtension\Resources\DownloadJfrogCli.ps1 | |
shell: pwsh | |
- name: Build VSIX Project # build the vsix project using multi-core compilation and parallel builds | |
run: msbuild JFrogVSExtension.sln /p:Configuration=Release /p:Platform="Any CPU" /p:BuildInParallel=true /m | |
# - name: Run Tests | |
# uses: microsoft/[email protected] | |
# with: | |
# searchFolder: './UnitTestJfrogVSExtension/bin/Debug' | |
# testAssembly: '*.dll' | |
- name: Run MSTest Project | |
run: vstest.console.exe ./UnitTestJfrogVSExtension/bin/Debug/UnitTestJfrogVSExtension.dll |