We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 294fb85 commit 247642bCopy full SHA for 247642b
.github/workflows/dotnet.yml
@@ -3,8 +3,6 @@ name: .NET
3
on:
4
push:
5
branches: [ "master" ]
6
- pull_request:
7
- branches: [ "master" ]
8
9
jobs:
10
build:
@@ -18,8 +16,8 @@ jobs:
18
16
with:
19
17
dotnet-version: 6.0.x
20
- name: Restore dependencies
21
- run: dotnet restore
+ run: dotnet restore ./src
22
- name: Build
23
- run: dotnet build --no-restore
+ run: dotnet build ./src --no-restore
24
- name: Test
25
- run: dotnet test --no-build --verbosity normal
+ run: dotnet test ./src --no-build --verbosity normal
0 commit comments