File tree 2 files changed +18
-2
lines changed
2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 15
15
" dotnet-stryker"
16
16
],
17
17
"rollForward" : true
18
+ },
19
+ "liquidtestreports.cli" : {
20
+ "version" : " 2.0.0-beta.6" ,
21
+ "commands" : [
22
+ " liquid"
23
+ ],
24
+ "rollForward" : false
18
25
}
19
26
}
20
27
}
Original file line number Diff line number Diff line change @@ -5,12 +5,17 @@ on: push
5
5
env :
6
6
Configuration : Release
7
7
ContinuousIntegrationBuild : true
8
+ DISABLE_GITHUB_REPORTER : true
8
9
DOTNET_CLI_TELEMETRY_OPTOUT : true
9
10
DOTNET_NOLOGO : true
10
11
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION : true
11
12
REPORTGENERATOR_LICENSE : ${{ secrets.REPORTGENERATOR_LICENSE }}
12
13
TERM : xterm
13
14
15
+ defaults :
16
+ run :
17
+ shell : bash
18
+
14
19
jobs :
15
20
package :
16
21
strategy :
27
32
- name : 🏎 Optimize Windows runner
28
33
if : matrix.os == 'windows-latest'
29
34
run : |
30
- echo "DOTNET_INSTALL_DIR=D:\dotnet" >> $env: GITHUB_ENV
31
- echo "NUGET_PACKAGES=D:\nuget" >> $env: GITHUB_ENV
35
+ echo "DOTNET_INSTALL_DIR=D:\dotnet" >> $GITHUB_ENV
36
+ echo "NUGET_PACKAGES=D:\nuget" >> $GITHUB_ENV
32
37
- name : 🧑🔧 Install .NET SDK
33
38
uses : actions/setup-dotnet@v4
34
39
- name : ℹ️ Show .NET info
46
51
run : dotnet build --no-restore
47
52
- name : 🧪 Run tests
48
53
run : dotnet test --no-build
54
+ - name : 📊 Write tests summary
55
+ run : |
56
+ dotnet tool restore
57
+ dotnet liquid --inputs "File=*.trx" --output-file $GITHUB_STEP_SUMMARY
49
58
- name : 📤 Upload received files from failing tests
50
59
uses : actions/upload-artifact@v4
51
60
if : failure()
You can’t perform that action at this time.
0 commit comments