We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8cfc407 + b37b687 commit 09fcb39Copy full SHA for 09fcb39
.github/workflows/lint.yml
@@ -0,0 +1,14 @@
1
+name: Lint
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ check-format:
7
+ runs-on: ubuntu-24.04
8
+ steps:
9
+ - name: Checkout code
10
+ uses: actions/checkout@v4
11
+ - name: Run make -C schema fmt
12
+ run: make -C schema fmt
13
+ - name: Check for changes
14
+ run: git diff --exit-code
schema/config-schema.json
@@ -226,14 +226,14 @@
226
"properties": {
227
"initial": {
228
"type": "string",
229
- "pattern": "^[0-9, -]*$"
+ "pattern": "^[0-9, -]*$"
230
},
231
"final": {
232
233
234
}
235
236
- }
+ }
237
238
239
"linux": {
0 commit comments