1#!/bin/sh 2# Use rustup to locally run the same suite of tests as .github/workflows/ 3# (You should first install/update all of the versions below.) 4 5set -ex 6 7ci=$(dirname $0) 8for version in 1.8.0 1.15.0 1.20.0 1.26.0 1.31.0 stable beta nightly; do 9 rustup run "$version" "$ci/test_full.sh" 10done 11