From 3c1dfefb40916968f231785da8ae3e8c35a443c8 Mon Sep 17 00:00:00 2001 From: Ben Adams Date: Sun, 3 Jan 2021 22:11:19 +0000 Subject: [PATCH] Test pipeline (#135) * Test pipeline * fix --- .github/workflows/pull-request.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 7575a5d..17cde3e 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -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 }}