Test pipeline (#135)

* Test pipeline

* fix
This commit is contained in:
Ben Adams
2021-01-03 22:11:19 +00:00
committed by GitHub
parent 70393b5020
commit 3c1dfefb40

View File

@@ -41,10 +41,13 @@ jobs:
run: dotnet --info
- name: Clean
- run: dotnet clean -v m && dotnet build -c ${{ matrix.config }} && dotnet nuget locals all --clear
run: dotnet clean -v m
- name: Clear cache
run: dotnet nuget locals all --clear
- name: Build
- run: dotnet build -c ${{ matrix.config }}
run: dotnet build -c ${{ matrix.config }}
- name: "Test"
run: dotnet test -c ${{ matrix.config }}