Some checks failed
CI / Secret scan (gitleaks) (pull_request) Successful in 1m4s
CI / test (pull_request) Successful in 1m10s
CI / Security audit (bandit) (pull_request) Successful in 33s
CI / typecheck (pull_request) Failing after 1m41s
CI / lint (pull_request) Failing after 1m48s
9 lines
142 B
Bash
Executable file
9 lines
142 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$PRY_SKIP_MIGRATIONS" != "1" ]; then
|
|
echo "Running database migrations..."
|
|
alembic upgrade head
|
|
fi
|
|
|
|
exec "$@"
|