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 2121 uses : actions/setup-dotnet@v4
2222 with :
2323 dotnet-version : ${{ vars.DOTNET_VERSION }}
24- - name : Build
24+ - name : Build with .NET ${{ vars.DOTNET_VERSION }}
2525 run : dotnet build ./src/**/*.csproj --configuration ${{ vars.BUILD_CONFIGURATION }} /p:Platform=${{ vars.BUILD_PLATFORM }}
26- - name : Upload
26+ - name : Upload Build
2727 uses : actions/upload-artifact@v4
2828 with :
2929 name : build
4141 uses : actions/setup-dotnet@v4
4242 with :
4343 dotnet-version : ${{ vars.DOTNET_VERSION }}
44- - name : Test
44+ - name : Test with .NET ${{ vars.DOTNET_VERSION }}
4545 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
4747 uses : actions/upload-artifact@v4
4848 with :
4949 name : test-results
@@ -60,13 +60,13 @@ jobs:
6060 uses : actions/setup-dotnet@v4
6161 with :
6262 dotnet-version : ${{ vars.DOTNET_VERSION }}
63- - name : Download
63+ - name : Download Build
6464 uses : actions/download-artifact@v4
6565 with :
6666 name : build
67- - name : Pack
67+ - name : Pack with .NET ${{ vars.DOTNET_VERSION }}
6868 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
7070 uses : actions/upload-artifact@v4
7171 with :
7272 name : package
You can’t perform that action at this time.
0 commit comments