File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 9
9
- master # Only run when PR is raised for master
10
10
11
11
permissions :
12
- pull-requests : write # for writting comment for coverage
12
+ checks : write # for publishing test results
13
+ pull-requests : write # for writting comment for coverage & test result
13
14
14
15
# This ensures for a single PR one job is run in case of multiple runs
15
16
concurrency :
24
25
# Run Tests
25
26
- name : Run Tests
26
27
run : docker-compose -f "docker-compose.test.yml" up --build
28
+ # Publish Test results
29
+ - name : Publish Test Results
30
+ uses : EnricoMi/publish-unit-test-result-action@v2
31
+ if : always()
32
+ with :
33
+ files : |
34
+ ./temp/testresults/test-results.xml
27
35
# Code Coverage
28
36
- name : Code Coverage Report
29
37
42
50
if : github.event_name == 'pull_request'
43
51
with :
44
52
recreate : true
45
- path : code-coverage-results.md
53
+ path : code-coverage-results.md
You can’t perform that action at this time.
0 commit comments