File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 21
21
uses : actions/setup-dotnet@v4
22
22
with :
23
23
dotnet-version : ${{ vars.DOTNET_VERSION }}
24
- - name : Build
24
+ - name : Build with .NET ${{ vars.DOTNET_VERSION }}
25
25
run : dotnet build ./src/**/*.csproj --configuration ${{ vars.BUILD_CONFIGURATION }} /p:Platform=${{ vars.BUILD_PLATFORM }}
26
- - name : Upload
26
+ - name : Upload Build
27
27
uses : actions/upload-artifact@v4
28
28
with :
29
29
name : build
41
41
uses : actions/setup-dotnet@v4
42
42
with :
43
43
dotnet-version : ${{ vars.DOTNET_VERSION }}
44
- - name : Test
44
+ - name : Test with .NET ${{ vars.DOTNET_VERSION }}
45
45
run : dotnet test ./tests/**/*Tests.csproj --configuration ${{ vars.BUILD_CONFIGURATION }} /p:Platform=${{ vars.BUILD_PLATFORM }} --verbosity normal --settings unit-test.runsettings --logger trx --collect:"Code Coverage" --results-directory test-results
46
- - name : Upload
46
+ - name : Upload Test Results
47
47
uses : actions/upload-artifact@v4
48
48
with :
49
49
name : test-results
@@ -60,13 +60,13 @@ jobs:
60
60
uses : actions/setup-dotnet@v4
61
61
with :
62
62
dotnet-version : ${{ vars.DOTNET_VERSION }}
63
- - name : Download
63
+ - name : Download Build
64
64
uses : actions/download-artifact@v4
65
65
with :
66
66
name : build
67
- - name : Pack
67
+ - name : Pack with .NET ${{ vars.DOTNET_VERSION }}
68
68
run : dotnet pack ./src/**/*.csproj --no-build --no-restore --configuration ${{ vars.BUILD_CONFIGURATION }} /p:Platform=${{ vars.BUILD_PLATFORM }}
69
- - name : Upload
69
+ - name : Upload Package
70
70
uses : actions/upload-artifact@v4
71
71
with :
72
72
name : package
You can’t perform that action at this time.
0 commit comments