Skip to content

Commit 98eef01

Browse files
committed
qa: ensure README contains valid JSON
Signed-off-by: Maximilian Bösing <[email protected]>
1 parent 730cfce commit 98eef01

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ It spits out a single output, "matrix", which is a JSON string in the following
6161
"name": "(string) Name of the check being run",
6262
"operatingSystem": "(string) Name of the OS the job should be run on (generally ubuntu-latest)",
6363
"action": "(string) GHA to run the step on; currently ignored, as GHA does not support dynamic action selection",
64-
"job": "(string) JSON object detailing the job (more on this later)",
65-
},
64+
"job": "(string) JSON object detailing the job (more on this later)"
65+
}
6666
],
67-
"exclude: [
67+
"exclude": [
6868
{
6969
}
7070
]
@@ -88,7 +88,7 @@ It will have the following elements, but is not restricted to them:
8888
"php.ini directives, one per element; e.g. 'memory_limit=-1'",
8989
],
9090
"dependencies": "dependencies to test against; one of lowest, locked, latest",
91-
"command": "command to run to perform the check",
91+
"command": "command to run to perform the check"
9292
}
9393
```
9494

@@ -99,19 +99,19 @@ The package can include a configuration file in its root, `.laminas-ci.json`, wh
9999
```json
100100
{
101101
"extensions": [
102-
"extension names to install",
102+
"extension names to install"
103103
],
104104
"ini": [
105-
"php.ini directives",
105+
"php.ini directives"
106106
],
107107
"checks": [
108108
{
109-
},
109+
}
110110
],
111111
"additional_checks": [
112112
{
113-
},
114-
]
113+
}
114+
],
115115
"exclude": [
116116
{
117117
}
@@ -142,15 +142,15 @@ In each case, it MUST have the structure as noted above:
142142
"extensions": [
143143
"OPTIONAL array of strings",
144144
"Each element represents an extension to install",
145-
"Names are from the Sury PHP repository, minus the php{VERSION}- prefix",
145+
"Names are from the Sury PHP repository, minus the php{VERSION}- prefix"
146146
],
147147
"ini": [
148148
"OPTIONAL array of strings",
149149
"Each element respresents one php.ini directive",
150-
"e.g. 'memory_limit=-1'",
150+
"e.g. 'memory_limit=-1'"
151151
],
152152
"dependencies": "dependencies to test against; one of lowest, locked, latest",
153-
"command": "command to run to perform the check",
153+
"command": "command to run to perform the check"
154154
}
155155
```
156156

0 commit comments

Comments
 (0)