add probing of all available path candidates + return missed DOTNET_H… #319
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: Build and test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: | |
- master | |
- 'release/**' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # Nerdbank.GitVersioning requires non-shallow checkout | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: | | |
6.0.x | |
- name: Restore | |
run: dotnet restore -bl:restore.binlog | |
- name: Build | |
run: dotnet build --no-restore -bl:MSBuildLocator.binlog | |
- name: Test | |
run: dotnet test --no-build --verbosity normal | |
- name: Pack | |
run: dotnet pack --no-build | |
- name: Upload Packages | |
uses: actions/upload-artifact@v2 | |
with: | |
name: package | |
path: '**/*.*nupkg' | |
if-no-files-found: error | |
- name: Upload logs | |
uses: actions/upload-artifact@v2 | |
if: ${{ always() }} | |
with: | |
name: logs | |
path: '**/*.binlog' | |
if-no-files-found: error |