-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
29 lines (29 loc) · 929 Bytes
/
action.yml
File metadata and controls
29 lines (29 loc) · 929 Bytes
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
name: Diffblue Cover
description: Runs Diffblue Cover to automatically write and maintain Java unit tests.
author: Diffblue
inputs:
license-key:
required: true
description: The license key provided in your welcome email or provided by your organization.
access-token:
required: true
description: The access token used to push commits and call GitHub APIs.
args:
required: false
description: The Diffblue Cover command line arguments.
default: >-
ci
activate
validate
create
working-directory:
required: false
description: The working directory to pass to `dcover` comamnds that accept a `--working-directory` argument.
default: .
runs:
using: 'node20'
main: 'dist/index.js'
env:
DIFFBLUE_LICENSE_KEY: ${{ inputs.license-key }}
DIFFBLUE_WORKING_DIRECTORY: ${{ inputs.working-directory }}
DIFFBLUE_ACCESS_TOKEN: ${{ inputs.access-token }}