File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ jobs:
50
50
- name : Restore dependencies
51
51
run : dotnet restore
52
52
- name : Build
53
- run : dotnet build /p:Version=${{ steps.version_step.outputs.fullSemVer }} --no-restore -c Release -v n
53
+ run : dotnet build /p:Version=${{ steps.version_step.outputs.fullSemVer }} --no-restore -c Debug -v n
54
54
- name : Unit Tests
55
- run : dotnet test -c Release --no-build -v n --filter="Category=Unit"
55
+ run : dotnet test -c Debug --no-build -v n --filter="Category=Unit"
56
56
- name : Integration Tests
57
57
run : |
58
- dotnet test -c Release /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura --no-build -v n --filter="Category=Integration"
58
+ dotnet test -c Debug /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura --no-build -v n --filter="Category=Integration"
59
59
mkdir coverage-report
60
60
- name : Code Coverage Summary Report For Merge Request
61
61
if : github.event_name == 'pull_request_target'
86
86
uses : actions/upload-artifact@v4
87
87
with :
88
88
name : windows_build_${{ steps.version_step.outputs.fullSemVer }}
89
- path : ./src/HydraScript/bin/Release /net9.0
89
+ path : ./src/HydraScript/bin/Debug /net9.0
Original file line number Diff line number Diff line change 1
1
using System . CommandLine ;
2
+ using System . Diagnostics . CodeAnalysis ;
2
3
3
4
namespace HydraScript ;
4
5
6
+ [ ExcludeFromCodeCoverage ]
5
7
internal class ExecuteCommand : CliRootCommand
6
8
{
7
9
internal ExecuteCommand ( ) : base ( "HydraScript interpreter" )
You can’t perform that action at this time.
0 commit comments