We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38d712a commit cb8486eCopy full SHA for cb8486e
1 file changed
.github/workflows/test.yml
@@ -5,6 +5,12 @@ on:
5
branches: [ master ]
6
pull_request:
7
8
+ workflow_dispatch:
9
+
10
+permissions:
11
+ contents: read
12
+ checks: write
13
+ pull-requests: write # 如果需要评论 PR
14
15
jobs:
16
test:
@@ -25,7 +31,7 @@ jobs:
25
31
# 测试图形化报告
26
32
- name: Publish Test Report
27
33
uses: dorny/test-reporter@v2
28
- if: always()
34
+ if: always() || failure()
29
35
with:
30
36
name: Pester Tests (${{ matrix.os }})
37
path: testResults.xml
0 commit comments