We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02d1a68 commit af68d8fCopy full SHA for af68d8f
1 file changed
.travis.yml
@@ -5,10 +5,10 @@ rust:
5
# - nightly
6
cache: cargo
7
before_script:
8
- - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then (rustup component add rustfmt-preview clippy-preview) fi
+ - if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (rustup component add rustfmt-preview clippy-preview) fi
9
script:
10
- - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then (cargo fmt --all -- --check) fi
11
- - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then (cargo clippy) fi
+ - if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (cargo fmt --all -- --check) fi
+ - if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (cargo clippy) fi
12
- cargo test --all
13
- cargo build --manifest-path=./examples/github/Cargo.toml
14
- cargo build --manifest-path=./graphql_client_cli/Cargo.toml
0 commit comments