Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ env:
permissions:
id-token: write
contents: read
checks: write
jobs:
build:
runs-on: windows-latest
Expand All @@ -34,6 +35,13 @@ jobs:
- name: Build and Test
run: ./Build.ps1
shell: pwsh
- name: Report Test Results
uses: dorny/test-reporter@v1
Comment thread
jbogard marked this conversation as resolved.
Outdated
if: success() || failure()
Comment thread
jbogard marked this conversation as resolved.
with:
name: Test Results (Windows)
path: artifacts/**/*.trx
Comment thread
jbogard marked this conversation as resolved.
Outdated
reporter: dotnet-trx
- name: Get package version
id: version
shell: pwsh
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ env:
permissions:
id-token: write
contents: read
checks: write
jobs:
build:
strategy:
Expand Down Expand Up @@ -42,6 +43,13 @@ jobs:
- name: Build and Test
run: ./Build.ps1
shell: pwsh
- name: Report Test Results
uses: dorny/test-reporter@v1
Comment thread
jbogard marked this conversation as resolved.
Outdated
if: always()
with:
name: Test Results (Windows)
path: artifacts/**/*.trx
Comment thread
jbogard marked this conversation as resolved.
Outdated
reporter: dotnet-trx
- name: Get package version
id: version
shell: pwsh
Expand Down
Loading