rust-nex/check-all.sh

9 lines
187 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2026-04-26 14:39:05 +02:00
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"