File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -15,16 +15,22 @@ jobs:
15
15
dotnet-version : 8.0.x
16
16
17
17
- name : Restore dependencies
18
- run : dotnet restore
18
+ run : |
19
+ dotnet restore src
20
+ dotnet restore test
21
+ dotnet restore benchmark
19
22
20
23
- name : Build
21
- run : dotnet build --no-restore --configuration Release
24
+ run : |
25
+ dotnet build --no-restore --configuration Release src
26
+ dotnet build --no-restore --configuration Release test
27
+ dotnet build --no-restore --configuration Release benchmark
22
28
23
29
- name : Run tests
24
- run : dotnet test --no-build --configuration Release
30
+ run : dotnet test --no-build --configuration Release test
25
31
26
32
- name : Pack
27
- run : dotnet pack --no-build --configuration Release --output ./nupkg
33
+ run : dotnet pack src --no-build --configuration Release --output ./nupkg
28
34
29
35
- name : Publish to NuGet
30
36
if : startsWith(github.ref, 'refs/tags/')
You can’t perform that action at this time.
0 commit comments