tmux-copyrat/ci/rustup.sh
2024-08-13 00:04:45 +02:00

10 lines
270 B
Bash
Executable file

#!/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.74.0 stable beta nightly; do
rustup run "$version" "$ci/test_full.sh"
done