- #!/bin/sh
- # Use rustup to locally run the same suite of tests as .github/workflows/
- # (You should first install/update all of the versions below.)
- set -ex
- ci=$(dirname $0)
- for version in 1.31.0 1.35.0 1.37.0 1.38.0 1.44.0 1.46.0 stable beta nightly; do
- rustup run "$version" "$ci/test_full.sh"
- done
|