-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathaction.yml
41 lines (41 loc) · 1.2 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
name: 'Coveralls Python'
author: 'Andre Miras'
description: 'Python coverage reports via coveralls.io'
branding:
color: 'green'
icon: 'percent'
inputs:
github-token:
description: 'The `GITHUB_TOKEN` or `COVERALLS_REPO_TOKEN`.'
default: ${{ github.token }}
parallel:
description: 'Set to true if you are using parallel jobs, then use `parallel-finished: true` for the last action.'
default: false
parallel-finished:
description: 'Set to true for the last action when using `parallel: true`.'
default: false
base-path:
description: 'The name of a sub-directory in which the coverage files are to be found.'
default: '.'
flag-name:
description: 'A description of the current job used in connection with parallel.'
default: null
debug:
description: 'Set to `true` to increase logger verbosity.'
default: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- --github-token
- ${{ inputs.github-token }}
- --base-path
- ${{ inputs.base-path }}
- --flag-name
- ${{ inputs.flag-name }}
- --parallel
- ${{ inputs.parallel }}
- --parallel-finished
- ${{ inputs.parallel-finished }}
- --debug
- ${{ inputs.debug }}