Skip to content

Commit

Permalink
add upload artifact section
Browse files Browse the repository at this point in the history
  • Loading branch information
DerRobert-28 committed May 22, 2024
1 parent 1fe847b commit b3ead5a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/Automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,10 @@ jobs:
run: dotnet build --no-restore
- name: Test
run: dotnet test -l html -v detailed
# run: dotnet test -l html -v diag >test.log
# run: dotnet test --no-build --verbosity normal
- name: Upload Test Results
uses: actions/upload-artifact@v4
with:
name: test-results
path: |
./TestResults/TestResults.html
./SharpTools2024.UnitTests.log
11 changes: 8 additions & 3 deletions .github/workflows/Manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
description: 'Environment to run tests against'
type: environment
required: true

jobs:
Manual:
runs-on: windows-latest
Expand All @@ -39,5 +39,10 @@ jobs:
run: dotnet build --no-restore
- name: Test
run: dotnet test -l html -v detailed
# run: dotnet test -l html -v diag >test.log
# run: dotnet test --no-build --verbosity normal
- name: Upload Test Results
uses: actions/upload-artifact@v4
with:
name: test-results
path: |
./TestResults/TestResults.html
./SharpTools2024.UnitTests.log

0 comments on commit b3ead5a

Please sign in to comment.