Skip to content

Commit

Permalink
Dont change workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanrw committed Jul 26, 2023
1 parent 88cee67 commit b9c1651
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,19 @@ jobs:
6.0.x
7.0.x
- name: Restore
run: dotnet restore

- name: Build
run: ./bin/Build.sh
run: dotnet build --configuration Release --no-restore

- name: Test
run: ./bin/Test.sh
run: dotnet test --logger trx --results-directory "TestResults"

- name: Upload dotnet test results
uses: actions/upload-artifact@v3
with:
name: dotnet-results
path: TestResults
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
if: ${{ always() }}

0 comments on commit b9c1651

Please sign in to comment.