File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 1212
1313 runs-on : ubuntu-latest
1414
15+ matrix :
16+ configuration : [Debug, Release]
17+
1518 steps :
1619 - uses : actions/checkout@v4
1720 - name : Setup .NET
@@ -24,12 +27,12 @@ jobs:
2427
2528 - name : Build
2629 run : |
27- dotnet build --no-restore
28- dotnet build --no-restore -c Release
30+ dotnet build --no-restore -c ${{ matrix.configuration }}
2931
3032 - name : Test
3133 run : |
32- dotnet run --project ./cli --TEST
34+ dotnet run -c ${{ matrix.configuration }} --project ./cli --TEST
35+
36+ ###dotnet run --project ./cli --markdown >> $GITHUB_STEP_SUMMARY
3337
34- ##dotnet run --project ./cli --markdown >> $GITHUB_STEP_SUMMARY
35- dnx -y FUnit.Run -- -md >> $GITHUB_STEP_SUMMARY
38+ dnx -y FUnit.Run -- -c ${{ matrix.configuration }} -md >> $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments