chore(ci): configure github-actions

This commit is contained in:
graelo 2021-10-23 12:19:46 +02:00
parent 9f466aea82
commit 9e774174d0
6 changed files with 224 additions and 1 deletions

10
ci/rustup.sh Executable file
View file

@ -0,0 +1,10 @@
#!/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.50.0 stable beta nightly; do
rustup run "$version" "$ci/test_full.sh"
done