Skip to content

Commit 247642b

Browse files
authored
Update dotnet.yml
1 parent 294fb85 commit 247642b

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: .NET
33
on:
44
push:
55
branches: [ "master" ]
6-
pull_request:
7-
branches: [ "master" ]
86

97
jobs:
108
build:
@@ -18,8 +16,8 @@ jobs:
1816
with:
1917
dotnet-version: 6.0.x
2018
- name: Restore dependencies
21-
run: dotnet restore
19+
run: dotnet restore ./src
2220
- name: Build
23-
run: dotnet build --no-restore
21+
run: dotnet build ./src --no-restore
2422
- name: Test
25-
run: dotnet test --no-build --verbosity normal
23+
run: dotnet test ./src --no-build --verbosity normal

0 commit comments

Comments
 (0)