1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 00:21:08 +01:00

check example on stable

This commit is contained in:
Nikolay Kim 2018-01-22 19:49:19 -08:00
parent 1053c44326
commit 3653c78e92

View File

@ -42,7 +42,7 @@ before_script:
script:
- |
if [[ "$TRAVIS_RUST_VERSION" == "stable" ]]; then
if [[ "$TRAVIS_RUST_VERSION" == "1.20.0" ]]; then
cargo clean
USE_SKEPTIC=1 cargo test --features=alpn
else
@ -52,7 +52,7 @@ script:
fi
- |
if [[ "$TRAVIS_RUST_VERSION" == "1.20.0" ]]; then
if [[ "$TRAVIS_RUST_VERSION" == "stable" ]]; then
cd examples/basics && cargo check && cd ../..
cd examples/hello-world && cargo check && cd ../..
cd examples/multipart && cargo check && cd ../..