Separate restore and test steps to better see execution times.

Restore could be cached, but it looks quite complicated to pull off.
This commit is contained in:
Serge Camille
2020-09-13 10:42:19 +02:00
parent 81208c0f03
commit ce97fcf335

View File

@@ -43,5 +43,8 @@ jobs:
with:
dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel
- name: Restore
run: dotnet restore S7.Net.UnitTest
- name: Test
run: dotnet test --verbosity normal --logger GitHubActions --framework ${{ matrix.test-framework }}
run: dotnet test --no-restore --verbosity normal --logger GitHubActions --framework ${{ matrix.test-framework }}