mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
10 lines
238 B
Bash
Executable File
10 lines
238 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
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.+' || :
|