File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build Mvc, Razor Pages and ContentSecurityPolicy Solutions
2+
3+ on :
4+ push
5+
6+ jobs :
7+ build :
8+ runs-on : windows-latest
9+ env :
10+ TELERIK_LICENSE : ${{ secrets.TELERIK_LICENSE }}
11+
12+ steps :
13+ - name : Checkout repo
14+ uses : actions/checkout@v4
15+
16+ - name : Setup .NET
17+ uses : actions/setup-dotnet@v4
18+ with :
19+ dotnet-version : 9.x.x
20+
21+ - name : Build Telerik.Examples.Mvc
22+ run : dotnet build Telerik.Examples.Mvc/Telerik.Examples.Mvc.sln --configuration Release
23+
24+ - name : Build Telerik.Examples.RazorPages
25+ run : dotnet build Telerik.Examples.RazorPages/Telerik.Examples.RazorPages.sln --configuration Release
26+
27+ - name : Build Telerik.Examples.ContentSecurityPolicy
28+ run : dotnet build Telerik.Examples.ContentSecurityPolicy/Telerik.Examples.ContentSecurityPolicy.sln --configuration Release
You can’t perform that action at this time.
0 commit comments