File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 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
66on :
77 push :
1010 branches : [ "main" ]
1111
1212jobs :
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
You can’t perform that action at this time.
0 commit comments