Skip to content

Commit 2545807

Browse files
committed
chore: add ci build
1 parent ad7b885 commit 2545807

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/build-debug.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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

0 commit comments

Comments
 (0)