Skip to content

Commit 0ed3c39

Browse files
committed
Refactor dotnet.yml to include specific paths for push and pull_request events
1 parent 76eea4d commit 0ed3c39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
with:
2626
dotnet-version: 8.0.x
2727
- name: Restore dependencies
28-
run: dotnet restore
28+
run: dotnet restore src/Application/Application.csproj
2929
- name: Build
30-
run: dotnet build --no-restore
30+
run: dotnet build src/Application/Application.csproj --no-restore
3131
- name: Test
32-
run: dotnet test --no-build --verbosity normal
32+
run: dotnet test src/Application.Tests/Application.Tests.csproj --no-build --verbosity normal

0 commit comments

Comments
 (0)