mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 02:02:14 +00:00
8 lines
263 B
Bash
Executable File
8 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
DIR=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
|
|
|
|
cd "${DIR}/../test/api/integration"
|
|
make build && make run DOCKER_PARAMS="-v \"$(pwd)/../../../target:/build/target\"" WITH_ARGS="bash -c \"sbt ';validate' && sbt ';verify'\""
|