File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 29
29
run : dotnet build --configuration Release --no-restore src/ChristopherBriddock.SortingAlgorithms.sln -p:PackageVersion=${{ secrets.RELEASE_VERSION }}
30
30
31
31
- name : Test
32
- run : dotnet test --configuration Release --no-build src/ChristopherBriddock.SortingAlgorithms.Tests/ChristopherBriddock.SortingAlgorithms.Tests.csproj
32
+ run : dotnet test --configuration Release --no-build src/ChristopherBriddock.SortingAlgorithms.Tests/ChristopherBriddock.SortingAlgorithms.Tests.csproj --logger trx --results-directory TestResults
33
+
34
+ - name : Upload Test Results
35
+ uses : actions/upload-artifact@v4
36
+ with :
37
+ name : test-results
38
+ path : TestResults/*.trx
39
+ if-no-files-found : error
33
40
34
41
- name : Pack NuGet package
35
42
run : dotnet pack --configuration Release --no-build src/ChristopherBriddock.SortingAlgorithms/ChristopherBriddock.SortingAlgorithms.csproj -p:PackageVersion=${{ secrets.RELEASE_VERSION }} -o out
You can’t perform that action at this time.
0 commit comments