forked from tbartelmess/analyze-xcoderesults-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
56 lines (56 loc) · 1.54 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: 'Analyze XCode Results'
description: 'Display Xcode test results and build warnings as GitHub annotations'
author: 'Thomas Bartelmess'
inputs:
results:
required: true
description: 'Path to a the xcresult bundle'
pathPrefix:
required: false
description: 'Build Path Prefix'
default: ${{ github.workspace }}
GITHUB_TOKEN:
required: true
description: "GitHub token to create the check"
title:
required: true
description: "Title for the check results"
default: "Test Results"
buildSummaryTable:
required: true
description: "Include a table with the number of build errors and warnings"
default: "true"
testSummaryTable:
required: true
description: "Include a table with the number of passed and failed tests"
default: "true"
testFailureAnnotations:
required: true
description: "Add annotations for each failed test"
default: "true"
summary:
required: true
description: "Include an summary with the number of failed tests and warnings"
default: "false"
warningAnnotations:
require: true
description: "Add annotations for all warnings"
default: "false"
errorAnnotations:
require: true
description: "Add annotations for all errors"
default: "false"
showSDKInfo:
required: true
description: "Print the SDK Version"
default: "true"
timingSummary:
required: true
description: "Print a summary of all tasks"
default: "true"
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'check-circle'
color: 'orange'