From 247642b39ef691877a2b59da7f64591af440372b Mon Sep 17 00:00:00 2001 From: Melnik Alexander Date: Sun, 12 Jun 2022 13:21:50 +0300 Subject: [PATCH] Update dotnet.yml --- .github/workflows/dotnet.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index e5c95d6..e334af1 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -3,8 +3,6 @@ name: .NET on: push: branches: [ "master" ] - pull_request: - branches: [ "master" ] jobs: build: @@ -18,8 +16,8 @@ jobs: with: dotnet-version: 6.0.x - name: Restore dependencies - run: dotnet restore + run: dotnet restore ./src - name: Build - run: dotnet build --no-restore + run: dotnet build ./src --no-restore - name: Test - run: dotnet test --no-build --verbosity normal + run: dotnet test ./src --no-build --verbosity normal