Skip to content

Commit 6f9ed86

Browse files
committed
Rename tasks in dotnet.yml workflow
1 parent 5177a45 commit 6f9ed86

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/dotnet.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will build a .NET project
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
33

4-
name: .NET
4+
name: Build and Test .NET Project
55

66
on:
77
push:
@@ -10,22 +10,28 @@ on:
1010
branches: [ "main" ]
1111

1212
jobs:
13-
build:
13+
build-and-test:
1414

1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- name: Checkout Source Code
19+
uses: actions/checkout@v3
20+
1921
- name: Setup .NET
2022
uses: actions/setup-dotnet@v3
2123
with:
2224
dotnet-version: 7.x
2325
include-prerelease: false
26+
2427
- name: Restore dependencies
2528
run: dotnet restore
26-
- name: Build
29+
30+
- name: Build Project
2731
run: dotnet build --no-restore
28-
- name: Test
32+
33+
- name: Run Unit Tests
2934
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage"
30-
- name: Codecov
35+
36+
- name: Upload Code Coverage
3137
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)