forked from shogo82148/actions-goveralls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
36 lines (34 loc) · 1.03 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
name: 'actions-goveralls'
description: 'Coveralls GitHub Action with Go integration powered by mattn/goveralls'
author: 'Ichinose Shogo'
inputs:
github-token:
description: Coveralls uses this token to verify the posted coverage data on the repo and create a new check based on the results.
required: true
default: '${{ github.token }}'
path-to-profile:
description: a path to your cover profile.
required: false
default: ''
parallel:
description: 'Set to true if you are running parallel jobs, then use "parallel_finished: true" for the last action.'
required: false
default: false
parallel-finished:
description: 'Set to true for the last action when using "parallel: true".'
required: false
default: false
job-number:
description: "job number"
required: false
default: '${{ strategy.job-index }}'
working-directory:
description: "working directory"
required: false
default: '.'
runs:
using: 'node12'
main: 'lib/main.js'
branding:
color: 'green'
icon: 'percent'