mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-26 16:49:22 +00:00
Co-authored-by: Thomas Osowski <osowskit@github.com> Co-authored-by: Tom Osowski <osowskit@github.com> Co-authored-by: Nick Van Wiggeren <nickvanw@github.com> Co-authored-by: Brandon Keepers <bkeepers@github.com> Co-authored-by: Nick Van Wiggeren <nickvanw@users.noreply.github.com> Co-authored-by: Steve Winton <stevewinton@gmail.com> Co-authored-by: Steve Winton <swinton@users.noreply.github.com> Co-authored-by: Greg Orzell <gorzell@users.noreply.github.com> Co-authored-by: Greg Orzell <gorzell@github.com>
10 lines
160 B
Bash
10 lines
160 B
Bash
#!/bin/sh
|
|
|
|
# Exit if any subcommand fails
|
|
set -e
|
|
|
|
# Ensure we're always running from the project root
|
|
cd "$(dirname "$0")/.."
|
|
|
|
bats test/*.bats
|
|
shellcheck *.sh
|