added agent workflow, added back in a structured version of additionalProperties

This commit is contained in:
2026-02-19 18:20:06 -05:00
parent 9d9c6d2c06
commit 7ec6e09ae0
10 changed files with 296 additions and 46 deletions

12
flow
View File

@ -98,14 +98,9 @@ install() {
fi
}
test-jspg() {
test() {
info "Running jspg tests..."
cargo pgrx test "pg${POSTGRES_VERSION}" "$@" || return $?
}
test-validator() {
info "Running validator tests..."
cargo test -p boon --features "pgrx/pg${POSTGRES_VERSION}" "$@" || return $?
cargo test --test tests "$@" || return $?
}
clean() {
@ -128,8 +123,7 @@ jspg-flow() {
build) build; return $?;;
install) install; return $?;;
reinstall) clean && install; return $?;;
test-jspg) test-jspg "${@:2}"; return $?;;
test-validator) test-validator "${@:2}"; return $?;;
test) test "${@:2}"; return $?;;
clean) clean; return $?;;
*) return 1 ;;
esac