rust-nex/check-all.sh

10 lines
208 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2026-04-26 14:57:02 +02:00
set -euo pipefail
2026-04-26 14:39:05 +02:00
SETTINGS=$(yq ea "." editions.yaml | yq 'keys[]')
IFS=$'\n'
while IFS=$'\n' read -r EDITION; do
2026-04-26 14:57:02 +02:00
export EDITION
./check-edition.sh $EDITION
done <<< "$SETTINGS"