rust-nex/check-all.sh
Maple 7f27ad0a3c
All checks were successful
Build and Test / friends (push) Successful in 2m56s
Build and Test / splatoon (push) Successful in 3m38s
fix more warnings and add script to check all editions
2026-04-26 13:48:26 +02:00

7 lines
170 B
Bash
Executable file

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