File tree Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,25 @@ jobs:
21
21
working-directory : ./DapperMappers
22
22
23
23
steps :
24
- - uses : actions/checkout@v3
25
- - name : Setup .NET
26
- uses : actions/setup-dotnet@v3
24
+ - name : Checkout code
25
+ uses : actions/checkout@v4
26
+
27
+ - name : Setup .NET 9.0.x
28
+ uses : actions/setup-dotnet@v4
27
29
with :
28
- dotnet-version : 8.0.x
29
- - name : Restore dependencies
30
- run : dotnet restore
30
+ dotnet-version : 9.0.x
31
+
32
+ - name : List installed .NET SDKs
33
+ run : dotnet --list-sdks
34
+
35
+ - name : Display dotnet version
36
+ run : dotnet --version
37
+
38
+ - name : Build the project
39
+ run : dotnet build --configuration Release
31
40
working-directory : ${{env.working-directory}}
32
- - name : Build
33
- run : dotnet build --no-restore
34
- working-directory : ${{env.working-directory}}
35
- - name : Test
36
- run : dotnet test --no-build --verbosity normal
41
+
42
+ - name : Run test
43
+ run : dotnet test --configuration Release --no-build --verbosity normal
37
44
working-directory : ${{env.working-directory}}
38
45
You can’t perform that action at this time.
0 commit comments