File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 11# This workflow will build a .NET project
2- # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
2+ # For more information, see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
33
44name : .NET
55
66on :
77 push :
8- branches : [ "main" ]
8+ branches : [ "main", "finished" ]
99 pull_request :
10- branches : [ "main" ]
10+ branches : [ "main", "finished" ]
1111
1212jobs :
1313 build :
2525 cd src/TrainingGuides.Web
2626 dotnet restore
2727 - name : Build
28- run : dotnet build --no-restore
28+ run : |
29+ cd src/TrainingGuides.Web
30+ dotnet build --no-restore
2931 - name : Test
3032 run : |
31- cd .. /TrainingGuides.Web
33+ cd src /TrainingGuides.Web.Tests
3234 dotnet test --no-build --verbosity normal
You can’t perform that action at this time.
0 commit comments