rust-nex/check-all.sh
Maple f870853630
All checks were successful
Build and Test / splatoon (push) Successful in 3m43s
Build and Test / friends (push) Successful in 3m53s
clean up a bit and fix scripts
2026-04-26 14:57:02 +02:00

10 lines
208 B
Bash
Executable file

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