Skip to content

Commit

Permalink
Properly test code on oldest supported rust version
Browse files Browse the repository at this point in the history
This PR fixes #28. We don't currently verify `human-panic`
properly works anymore. So this adds running tests on the
oldest version we support (which is 1.25.*)
  • Loading branch information
spacekookie committed Oct 4, 2018
1 parent 920251c commit 43a527e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ language: rust
rust:
- stable
- beta
- 1.25.0
script: |
cargo build --verbose &&
cargo test --verbose --all
matrix: # additional tests
include:
- rust: nightly
script: |
cargo test --all --features nightly
script: cargo test --all --features nightly
- rust: 1.29.1
env: CLIPPY=YESPLEASE
before_script: rustup component add clippy-preview
Expand Down

0 comments on commit 43a527e

Please sign in to comment.