Add tests, fixtures, and CI/CD workflow
Some checks failed
CI / test (ubuntu-latest, 3.10) (push) Failing after 5m1s
CI / test (ubuntu-latest, 3.11) (push) Failing after 4m55s
CI / test (ubuntu-latest, 3.12) (push) Failing after 4m52s
CI / test (ubuntu-latest, 3.8) (push) Failing after 4m54s
CI / test (ubuntu-latest, 3.9) (push) Failing after 4m57s
CI / test-minimal (push) Failing after 4m54s
CI / lint (push) Failing after 4m43s
CI / build (push) Successful in 9m40s
CI / release (push) Has been skipped

This commit is contained in:
2026-02-03 04:18:44 +00:00
parent 45e30ced60
commit df99ea157d

View File

@@ -0,0 +1,46 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string",
"pattern": "^\\d+\\.\\d+\\.\\d+$"
},
"description": {
"type": "string"
}
},
"author": {
"type": "string"
},
"settings": {
"type": "object",
"properties": {
"debug": {
"type": "boolean"
},
"timeout": {
"type": "integer",
"minimum": 0
},
"retries": {
"type": "integer",
"minimum": 0,
"maximum": 10
}
},
"required": ["debug", "timeout"]
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1
}
},
"required": ["name", "version"]
}