Skip to content

Commit

Permalink
Fix Github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Marfusios committed Sep 1, 2023
1 parent c806420 commit 041b8db
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
- name: Test
run: dotnet test --no-restore --logger "trx;LogFileName=tests.trx"
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: xUnit Tests
path: '**/*.trx'
reporter: dotnet-trx
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: xUnit Tests
path: '**/*.trx'
reporter: dotnet-trx
- name: Pack library project
run: dotnet pack src/Websocket.Client/Websocket.Client.csproj --no-build --configuration Release --include-symbols -p:SymbolPackageFormat=snupkg -o .
- name: Publish library (NuGet)
Expand Down

0 comments on commit 041b8db

Please sign in to comment.