-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
45 lines (45 loc) · 1.27 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
42
43
44
45
name: GoLang Test
description: Run tests with annotations for failures
author: Nate Maninger <[email protected]>
inputs:
package:
description: the package to run tests for
default: "./..."
required: false
args:
description: additional go test command line arguments, individual arguments should be separated by ';'
default: ""
required: false
show-long-running-tests:
description: outputs a warning for long running tests, -1 to disable
default: "30"
required: false
show-package-output:
description: deprecated, included for historical purposes
default: "false"
required: false
show-passed-tests:
description: shows tests that were run and passed
default: "true"
required: false
show-stdout:
description: shows the unparsed std-out from go test instead of the parsed output
default: "false"
required: false
skip-go-install:
description: deprecated, included for historical purposes
default: "false"
required: false
show-code-coverage:
description: shows code coverage for each package
default: "true"
required: false
working-directory:
description: the directory to run go test in
required: false
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: check
color: green