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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,10 +41,13 @@ jobs:
run: dotnet --info run: dotnet --info
- name: Clean - 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 - name: Build
- run: dotnet build -c ${{ matrix.config }} run: dotnet build -c ${{ matrix.config }}
- name: "Test" - name: "Test"
run: dotnet test -c ${{ matrix.config }} run: dotnet test -c ${{ matrix.config }}