mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-09 17:14:47 +00:00
16 lines
328 B
Bash
Executable File
16 lines
328 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
WORKING_DIR=$(dirname "$0")
|
|
cd "$WORKING_DIR"
|
|
|
|
GIT_ROOT=$(git rev-parse --show-cdup)
|
|
GIT_ROOT=${GIT_ROOT:-../../}
|
|
act --list --directory="$GIT_ROOT" 1>/dev/null 2>&1 || act --list --directory="$GIT_ROOT" 2>&1
|
|
|
|
actionlint -ignore 'reusable workflow call.+' || :
|
|
|
|
|
|
python3 check_reusable_workflows.py
|