Merge pull request #427 from actions/ethomson/dotnet

Update .NET Core CI template
This commit is contained in:
Mike Coutermarsh
2020-03-20 08:42:43 -07:00
committed by GitHub
+6 -2
View File
@@ -17,5 +17,9 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal