rust-nex/check-all.sh
Maple be6aabb4eb
All checks were successful
Build and Test / splatoon (push) Successful in 4m0s
Build and Test / friends (push) Successful in 4m13s
add pipefails propperly
2026-04-26 14:39:05 +02:00

9 lines
187 B
Bash
Executable file

#!/usr/bin/env bash
set -e pipefail
SETTINGS=$(yq ea "." editions.yaml | yq 'keys[]')
IFS=$'\n'
while IFS=$'\n' read -r EDITION; do
./check-edition.sh $EDITION
done <<< "$SETTINGS"