Skip to content

Commit 2a02922

Browse files
committed
Revert "Remove step"
This reverts commit cf6baea.
1 parent 8305614 commit 2a02922

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.github/workflows/test-report.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ci-report
2+
3+
# See Dorny instructions for why we need a separate yaml for creating a test report
4+
# for public repositories that accept forks:
5+
# https://github.com/dorny/test-reporter#recommended-setup-for-public-repositories
6+
7+
on:
8+
workflow_run:
9+
workflows: ['ci-test'] # runs after CI workflow
10+
types:
11+
- completed
12+
jobs:
13+
test-report-release:
14+
runs-on: windows-latest
15+
steps:
16+
- uses: dorny/test-reporter@v1
17+
with:
18+
artifact: test-results-release # artifact name
19+
name: Report release tests # Name of the check run which will be created
20+
path: '*.trx' # Path to test results (inside artifact .zip)
21+
reporter: dotnet-trx # Format of test results
22+
23+
test-report-debug:
24+
runs-on: windows-latest
25+
steps:
26+
- uses: dorny/test-reporter@v1
27+
with:
28+
artifact: test-results-debug # artifact name
29+
name: Report debug tests # Name of the check run which will be created
30+
path: '*.trx' # Path to test results (inside artifact .zip)
31+
reporter: dotnet-trx # Format of test results

src/FSharp.Control.TaskSeq.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{
2121
..\.github\dependabot.yml = ..\.github\dependabot.yml
2222
..\.github\workflows\main.yaml = ..\.github\workflows\main.yaml
2323
..\.github\workflows\publish.yaml = ..\.github\workflows\publish.yaml
24+
..\.github\workflows\test-report.yaml = ..\.github\workflows\test-report.yaml
2425
..\.github\workflows\test.yaml = ..\.github\workflows\test.yaml
2526
EndProjectSection
2627
EndProject

0 commit comments

Comments
 (0)