File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,13 @@ jobs:
17
17
with :
18
18
dotnet-version : 8.0.x
19
19
- name : Install dependencies
20
- run : dotnet restore LearnJsonEverything/LearnJsonEverything.csproj
20
+ run : |
21
+ dotnet restore LearnJsonEverything/LearnJsonEverything.csproj
22
+ dotnet restore LearnJsonEverything.Test/LearnJsonEverything.Test.csproj
21
23
- name : Pre-build solution
22
- run : dotnet build LearnJsonEverything/LearnJsonEverything.csproj -c Release --no-restore
24
+ run : dotnet build LearnJsonEverything.sln -c Release --no-restore
23
25
- name : Test
24
- run : dotnet test LearnJsonEverything/LearnJsonEverything.csproj -c Release --no-restore
26
+ run : dotnet test LearnJsonEverything.sln -c Release --no-restore
25
27
- name : Publish
26
28
run : dotnet publish LearnJsonEverything/LearnJsonEverything.csproj -c Release --no-restore -o bin
27
29
- name : Add .nojekyll file
You can’t perform that action at this time.
0 commit comments