Added archived documentation for DR #133
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, pull_request] | |
jobs: | |
windows-build: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
# TODO install all targeted .NET versions then test against all of them | |
dotnet-version: 6.0.104 | |
- name: Build | |
# MSBuildCommunityTasks doesn't play well with .NET 6 so skip all that | |
run: dotnet build --configuration Release -p:DRBuildMode=coreonly -p:SkipCopyToBuild=true | |
- name: Test | |
run: dotnet test -p:DRBuildMode=coreonly -p:SkipCopyToBuild=true |