Skip to content

Commit

Permalink
Action update
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Galloway committed Aug 29, 2024
1 parent 30fa26b commit f591eed
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,14 @@ jobs:
run: dotnet build --configuration Release ./Umami.Net/Umami.Net.csproj --no-restore

- name: Run tests
run: dotnet test --configuration Release ./Umami.Net.Test/Umami.Net.Test.csproj --no-build --verbosity normal
run: dotnet test --configuration Release ./Umami.Net.Test/Umami.Net.Test.csproj --no-build --logger:"trx;LogFileName=TestResults.trx" --results-directory "./TestResults" --verbosity normal

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: test-results
path: ./TestResults

- name: Pack project
run: dotnet pack --configuration Release ./Umami.Net/Umami.Net.csproj --no-build --output ./nupkg
Expand Down

0 comments on commit f591eed

Please sign in to comment.