Browse Source

Added extra diagnostics to test runner

tags/v0.7.0
Martin Evans 2 years ago
parent
commit
b4e57f7966
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      .github/workflows/main.yml

+ 6
- 1
.github/workflows/main.yml View File

@@ -52,4 +52,9 @@ jobs:
- name: Build
run: dotnet build LLamaSharp.sln -c ${{ matrix.config }} --no-restore
- name: Test
run: dotnet test LLamaSharp.sln -c ${{ matrix.config }} -l "console;verbosity=detailed"
run: dotnet test LLamaSharp.sln -c ${{ matrix.config }} -l "console;verbosity=detailed" --diag:logs/log.txt
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
path: logs/
name: logs

Loading…
Cancel
Save