File tree Expand file tree Collapse file tree 1 file changed +13
-14
lines changed Expand file tree Collapse file tree 1 file changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -5,26 +5,25 @@ name: .NET
5
5
6
6
on :
7
7
push :
8
- branches : [ "main" ]
8
+ branches : ["main"]
9
9
paths : src/Application/**
10
10
pull_request :
11
- branches : [ "main" ]
11
+ branches : ["main"]
12
12
paths : src/Application/**
13
13
14
14
jobs :
15
15
build :
16
-
17
16
runs-on : ubuntu-latest
18
17
19
18
steps :
20
- - uses : actions/checkout@v4
21
- - name : Setup .NET
22
- uses : actions/setup-dotnet@v4
23
- with :
24
- dotnet-version : 8.0.x
25
- - name : Restore dependencies
26
- run : dotnet restore
27
- - name : Build
28
- run : dotnet build --no-restore
29
- - name : Test
30
- run : dotnet test --no-build --verbosity normal
19
+ - uses : actions/checkout@v4
20
+ - name : Setup .NET
21
+ uses : actions/setup-dotnet@v4
22
+ with :
23
+ dotnet-version : 8.0.x
24
+ - name : Restore dependencies
25
+ run : dotnet restore src/Application/src/RazorPagesTestSample/RazorPagesTestSample.csproj
26
+ - name : Build
27
+ run : dotnet build --no-restore src/Application/src/RazorPagesTestSample/RazorPagesTestSample.csproj
28
+ - name : Test
29
+ run : dotnet test --no-build --verbosity normal src/Application/tests/RazorPagesTestSample.Tests/RazorPagesTestSample.Tests.csproj
You can’t perform that action at this time.
0 commit comments