Skip to content

Commit 0096b9e

Browse files
committed
Reduce excessive line lengths in YAML files where possible
The project uses a standardized target line length of 120 for YAML files. In some cases it is not feasible to meet that target, but other lines were unnecessarily long.
1 parent c9dd641 commit 0096b9e

File tree

1 file changed

+28
-12
lines changed

1 file changed

+28
-12
lines changed

action.yml

Lines changed: 28 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,64 @@
11
name: "Compile Arduino Sketches"
2-
description: "Checks whether Arduino sketches will compile and produces a report of data from the compilations"
2+
description: >-
3+
Checks whether Arduino sketches will compile and produces a report of data from the compilations
34
inputs:
45
cli-version:
5-
description: "Version of Arduino CLI to use when building"
6+
description: >-
7+
Version of Arduino CLI to use when building
68
default: "latest"
79
required: true
810
fqbn:
9-
description: "Full qualified board name, with Boards Manager URL if needed"
11+
description: >-
12+
Full qualified board name, with Boards Manager URL if needed
1013
default: "arduino:avr:uno"
1114
required: true
1215
libraries:
13-
description: "YAML-format list of library dependencies to install"
16+
description: >-
17+
YAML-format list of library dependencies to install
1418
default: "- source-path: ./"
1519
required: true
1620
platforms:
17-
description: "YAML-format list of platform dependencies to install"
21+
description: >-
22+
YAML-format list of platform dependencies to install
1823
default: ""
1924
required: true
2025
sketch-paths:
21-
description: "YAML-format list of paths containing sketches to compile."
26+
description: >-
27+
YAML-format list of paths containing sketches to compile.
2228
default: "- examples"
2329
required: true
2430
cli-compile-flags:
25-
description: "YAML-format list of flags to add to the Arduino CLI sketch compilation command."
31+
description: >-
32+
YAML-format list of flags to add to the Arduino CLI sketch compilation command.
2633
default: ""
2734
required: false
2835
verbose:
29-
description: "Set to true to show verbose output in the log"
36+
description: >-
37+
Set to true to show verbose output in the log
3038
default: "false"
3139
required: true
3240
sketches-report-path:
33-
description: "Path in which to save a JSON formatted file containing data from the sketch compilations"
41+
description: >-
42+
Path in which to save a JSON formatted file containing data from the sketch compilations
3443
default: "sketches-reports"
3544
required: true
3645
github-token:
37-
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."
46+
description: >-
47+
GitHub access token used to get information from the GitHub API.
48+
49+
Only needed if you are using the deltas report feature in a private repository.
3850
default: ""
3951
required: true
4052
enable-deltas-report:
41-
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"
53+
description: >-
54+
Set to true to cause the action to determine the change in memory usage and compiler warnings of the compiled
55+
sketches between the head and base refs of a PR and the immediate parent commit of a push
4256
default: "false"
4357
required: true
4458
enable-warnings-report:
45-
description: "Set to true to cause the action to record the compiler warning count for each sketch compilation in the sketches report"
59+
description: >-
60+
Set to true to cause the action to record the compiler warning count for each sketch compilation in the sketches
61+
report
4662
default: "false"
4763
required: true
4864

0 commit comments

Comments
 (0)