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
17 changes: 10 additions & 7 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,17 @@ jobs:
- name: Build
run: dotnet build --configuration Release --no-restore

- name: Run tests with code coverage
run: dotnet test --no-build --verbosity normal --results-directory "./TestResults/Coverage/" --collect:"XPlat Code Coverage"
- name: Tests
run: dotnet test --configuration Release --no-build

- name: Upload test results artifact
uses: actions/upload-artifact@v4
with:
name: test-results
path: '**/TestResults/**'
# - name: Run tests with code coverage
# run: dotnet test --no-build --verbosity normal --results-directory "./TestResults/Coverage/" --collect:"XPlat Code Coverage"

# - name: Upload test results artifact
# uses: actions/upload-artifact@v4
# with:
# name: test-results
# path: '**/TestResults/**'

- name: Performance Test
run: dotnet run --project SharpVectorPerformance --configuration Release
Expand Down
Loading