File tree 5 files changed +21
-47
lines changed
5 files changed +21
-47
lines changed Original file line number Diff line number Diff line change @@ -36,9 +36,9 @@ updates:
36
36
- " System.IO.Abstractions.TestingHelpers"
37
37
testing :
38
38
patterns :
39
- - " coverlet.collector"
40
39
- " FakeItEasy"
41
40
- " FakeItEasy.*"
41
+ - " GitHubActionsTestLogger"
42
42
- " Microsoft.NET.Test.Sdk"
43
43
- " Shouldly"
44
44
- " Verify.Xunit"
Original file line number Diff line number Diff line change 63
63
64
64
- run : dotnet r build
65
65
66
- - run : dotnet r test -- --logger "trx;LogFilePrefix=${{ matrix.os }}"
66
+ - run : dotnet r test -- --no-build -- logger GitHubActions
67
67
68
- - run : dotnet r pack -- --version-suffix ${{ env.VERSION_SUFFIX }}
68
+ - run : dotnet r pack -- --no-build -- version-suffix ${{ env.VERSION_SUFFIX }}
69
69
70
70
- name : Upload artifacts
71
71
@@ -75,11 +75,12 @@ jobs:
75
75
path : ./artifacts/*.nupkg
76
76
77
77
- name : Upload test results
78
+ if : failure()
78
79
79
- if : always()
80
80
with :
81
- name : test-results
82
- path : ./.coverage/*.trx
81
+ name : build-verify-test-results
82
+ path : |
83
+ **/*.received.*
83
84
84
85
release :
85
86
if : github.event_name == 'push'
Original file line number Diff line number Diff line change @@ -46,23 +46,16 @@ jobs:
46
46
47
47
- run : dotnet r build
48
48
49
- - run : dotnet r test
49
+ - run : dotnet r test -- --no-build --logger GitHubActions
50
50
51
- - run : dotnet r pack
51
+ - run : dotnet r pack -- --no-build
52
52
53
53
- name : Upload artifacts
54
54
55
55
with :
56
56
name : nupkg
57
57
path : ./artifacts/*.nupkg
58
58
59
- - name : Upload test results
60
-
61
- if : always()
62
- with :
63
- name : test-results
64
- path : ./.coverage/*.trx
65
-
66
59
- name : Upload release assets
67
60
uses : softprops/action-gh-release@v1
68
61
env :
82
75
dotnet nuget push "./artifacts/*.nupkg" \
83
76
--api-key ${{ secrets.NUGET_TOKEN }} \
84
77
--source https://api.nuget.org/v3/index.json
78
+
79
+ - name : Upload test results
80
+ if : failure()
81
+
82
+ with :
83
+ name : verify-test-results
84
+ path : |
85
+ **/*.received.*
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 27
27
</ItemGroup >
28
28
29
29
<ItemGroup >
30
- <PackageReference Include =" coverlet.collector" Version =" 6.0.0" >
31
- <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
32
- <PrivateAssets >all</PrivateAssets >
33
- </PackageReference >
34
30
<PackageReference Include =" FakeItEasy" Version =" 7.4.0" />
35
31
<PackageReference Include =" FakeItEasy.Analyzer.CSharp" Version =" 6.1.1" >
36
32
<PrivateAssets >all</PrivateAssets >
37
33
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
38
34
</PackageReference >
35
+ <PackageReference Include =" GitHubActionsTestLogger" Version =" 2.3.3" >
36
+ <PrivateAssets >all</PrivateAssets >
37
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
38
+ </PackageReference >
39
39
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.7.1" />
40
40
<PackageReference Include =" Shouldly" Version =" 4.2.1" />
41
41
<PackageReference Include =" System.IO.Abstractions.TestingHelpers" Version =" 19.2.69" />
You can’t perform that action at this time.
0 commit comments