mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
63e1877c48
This commit adds a config for yamllint, mass-reformats all of the existing Yaml testcases to pass linting, and adds a Yaml linting job to the pull-request Github Actions workflow. A few careful exceptions and ignores were added to the linter's config to allow keeping our existing Yaml files with minimal reformatting. Signed-off-by: Philip Conrad <philipaconrad@gmail.com>
63 lines
1.0 KiB
YAML
63 lines
1.0 KiB
YAML
---
|
|
cases:
|
|
- data: {}
|
|
modules:
|
|
- |
|
|
package generated
|
|
|
|
p = x {
|
|
ceil(1.01, x)
|
|
}
|
|
note: ceil rounds up
|
|
query: data.generated.p = x
|
|
want_result:
|
|
- x: 2
|
|
- data: {}
|
|
modules:
|
|
- |
|
|
package generated
|
|
|
|
p = x {
|
|
ceil(1.5, x)
|
|
}
|
|
note: ceil rounds up (2)
|
|
query: data.generated.p = x
|
|
want_result:
|
|
- x: 2
|
|
- data: {}
|
|
modules:
|
|
- |
|
|
package generated
|
|
|
|
p = x {
|
|
ceil(2222.2222222222, x)
|
|
}
|
|
note: ceil rounds up (3)
|
|
query: data.generated.p = x
|
|
want_result:
|
|
- x: 2223
|
|
- data: {}
|
|
modules:
|
|
- |
|
|
package generated
|
|
|
|
p = x {
|
|
ceil(1, x)
|
|
}
|
|
note: ceil integer
|
|
query: data.generated.p = x
|
|
want_result:
|
|
- x: 1
|
|
- data: {}
|
|
modules:
|
|
- |
|
|
package generated
|
|
|
|
p = x {
|
|
ceil(-1.99999, x)
|
|
}
|
|
note: ceil negative
|
|
query: data.generated.p = x
|
|
want_result:
|
|
- x: -1
|