7 lines
118 B
Bash
Executable File
7 lines
118 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
workflow_file="$1"
|
|
|
|
grep -Eq 'bazel test //(tests/)?\.\.\.' "${workflow_file}"
|