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
* show empty strings on selected fields
* add maybe.Optional[T] && maybe.Bool
* add Stringer to maybe.Bool
* update all references to *bool with maybe.Bool
* add test for BoolDecoder function
* add test on JSON marshaller/unmarshaller
* set maybe.Bool type to bool in jsonschema
* add a unit test for generating maybe.Bool json schema
* try running ajv tests on github action
* make schema test running under windows
* use nodejs 18
Descriptionstring`mapstructure:"description" description:"Describe the group"`
6
-
Profiles []string`mapstructure:"profiles" description:"Names of the profiles belonging to this group"`
7
-
ContinueOnError*bool`mapstructure:"continue-on-error" default:"auto" description:"Continue with the next profile on a failure, overrides \"global.group-continue-on-error\""`
7
+
Descriptionstring`mapstructure:"description" description:"Describe the group"`
8
+
Profiles []string`mapstructure:"profiles" description:"Names of the profiles belonging to this group"`
9
+
ContinueOnErrormaybe.Bool`mapstructure:"continue-on-error" default:"auto" description:"Continue with the next profile on a failure, overrides \"global.group-continue-on-error\""`
0 commit comments