Update .NET Core CI template

Run a `dotnet restore` step, run tests.
This commit is contained in:
Edward Thomson
2020-03-17 11:08:17 +00:00
parent c934669ce2
commit 781776c228
+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