mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-13 00:20:08 +01:00
10 lines
270 B
Bash
Executable file
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
|