mirror of
https://github.com/rbenv/ruby-build.git
synced 2026-01-01 20:41:11 +01:00
12 lines
194 B
Bash
Executable file
12 lines
194 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
set -x
|
|
|
|
STATUS=0
|
|
bats ${CI:+--tap} test || STATUS="$?"
|
|
|
|
if [ "$GITHUB_EVENT_NAME" = "pull_request" ]; then
|
|
./script/mirror verify "$COMMIT_RANGE"
|
|
fi
|
|
|
|
exit "$STATUS"
|