generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
action.yml
28 lines (28 loc) · 781 Bytes
/
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
name: 'xcresulttool'
description: 'generates a human-readable test report from the Xcode result bundle and shows it on GitHub Checks.'
author: 'kishikawa katsumi'
inputs:
path:
required: true
description: 'Path to the xcresult bundle'
token:
description: 'The GitHub authentication token'
default: ${{ github.token }}
title:
description: 'Title for the check results'
default: 'Xcode test results'
show-passed-tests:
description: 'Show passed tests'
default: true
show-code-coverage:
description: 'Whether to show code coverage'
default: true
upload-bundles:
description: 'Whether to upload the xcresult bundles'
default: true
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'file-text'
color: 'blue'