Add NSubstitute to the list of nuget for plugin recommendation #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: .NET | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
# runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 5.0.x | |
- name: Set up JDK 1.11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.11 | |
- name: Build plugin | |
uses: eskatos/[email protected] | |
with: | |
arguments: buildPlugin --stacktrace -PintellijPublishToken=none | |
- name: dotnet-tests-report | |
uses: zyborg/[email protected] | |
with: | |
report_name: plugin_tests | |
report_title: Plugin Tests | |
set_check_status_from_test_outcome: true | |
project_path: src/dotnet/ReSharperPlugin.NSubstituteComplete.Tests/ReSharperPlugin.NSubstituteComplete.Tests.csproj | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |