Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Simplify travis setup
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Sep 15, 2018
1 parent 7ed76cb commit 5911699
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 47 deletions.
24 changes: 14 additions & 10 deletions .travis.yml
@@ -1,16 +1,20 @@
sudo: false
language: rust
cache: cargo

rust:
- stable
- beta
- nightly
- 1.17.0

matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- rust: 1.17.0
script: cargo check
- rust: 1.21.0
- rust: nightly
env: CLIPPY=true
env: CLIPPY
script: |
if rustup component add clippy-preview; then
cargo clippy -- -Dclippy
fi
script: ./travis.sh
script:
- cargo build
- cargo test
37 changes: 0 additions & 37 deletions travis.sh

This file was deleted.

0 comments on commit 5911699

Please sign in to comment.