You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
329 B
14 lines
329 B
set dotenv-load := false
|
|
|
|
fmt_targets := "meatballhat.com jool.meatballhat.com gilly.meatballhat.com vault.meatballhat.com"
|
|
|
|
check: terrafmt shlint
|
|
|
|
terrafmt:
|
|
for t in {{ fmt_targets }} ; do \
|
|
terraform fmt -check "${t}"; \
|
|
done
|
|
|
|
shlint:
|
|
GITHUB_WORKSPACE={{justfile_directory()}} bash .github/actions/shlint/entrypoint
|