Skip to content

Commit 70383c8

Browse files
committed
test: chore
1 parent e07ba8f commit 70383c8

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
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

0 commit comments

Comments
 (0)