You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: action.yml
+13-3
Original file line number
Diff line number
Diff line change
@@ -4,33 +4,43 @@ inputs:
4
4
cli-version:
5
5
description: 'Version of Arduino CLI to use when building'
6
6
default: 'latest'
7
+
required: true
7
8
fqbn:
8
9
description: 'Full qualified board name, with Boards Manager URL if needed'
9
10
default: 'arduino:avr:uno'
11
+
required: true
10
12
libraries:
11
13
description: 'YAML-format list of library dependencies to install'
12
14
default: '- source-path: ./'
15
+
required: true
13
16
platforms:
14
17
description: 'YAML-format list of platform dependencies to install'
15
18
default: ''
19
+
required: true
16
20
sketch-paths:
17
21
description: 'YAML-format list of paths containing sketches to compile.'
18
22
default: '- examples'
23
+
required: true
19
24
verbose:
20
25
description: 'Set to true to show verbose output in the log'
21
-
default: false
26
+
default: 'false'
27
+
required: true
22
28
sketches-report-path:
23
29
description: 'Path in which to save a JSON formatted file containing data from the sketch compilations'
24
30
default: 'sketches-reports'
31
+
required: true
25
32
github-token:
26
33
description: 'GitHub access token used to get information from the GitHub API. Only needed if you are using the deltas report feature in a private repository.'
27
34
default: ''
35
+
required: true
28
36
enable-deltas-report:
29
37
description: 'Set to true to cause the action to determine the change in memory usage and compiler warnings of the compiled sketches between the head and base refs of a PR and the immediate parent commit of a push'
30
-
default: false
38
+
default: 'false'
39
+
required: true
31
40
enable-warnings-report:
32
41
description: 'Set to true to cause the action to record the compiler warning count for each sketch compilation in the sketches report'
0 commit comments