Skip to content

Commit cde619a

Browse files
author
Petr Sramek
committed
dsafsd
1 parent 9037738 commit cde619a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/dotnet.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
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
@@ -41,9 +41,9 @@ jobs:
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

0 commit comments

Comments
 (0)