forked from AndreMiras/coveralls-python-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (31 loc) · 889 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
29
30
31
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
debug:
description: 'Set to `true` to increase logger verbosity.'
default: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- --github-token
- ${{ inputs.github-token }}
- --parallel
- ${{ inputs.parallel }}
- --parallel-finished
- ${{ inputs.parallel-finished }}
- --debug
- ${{ inputs.debug }}