Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
run: |
find ./tests -type f -name '*Test*.csproj' | while read proj; do
echo "Running tests for $proj"
dotnet test "$proj" --no-build --configuration Release
dotnet test "$proj" --no-build --configuration Release --logger "trx" --results-directory "./TestResults"
done

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results-${{ matrix.os }}
path: '**/TestResults*.trx'
path: 'TestResults/**/*.trx'

publish:
name: Pack and Publish NuGet
Expand Down