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 357bba9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ script: |
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 All @@ -18,4 +17,6 @@ matrix: # additional tests
env: RUSTFMT=YESPLEASE
before_script: rustup component add rustfmt-preview
script: cargo fmt --all -- --check
- rust: 1.25
script: cargo test --all --verbose
cache: cargo

0 comments on commit 357bba9

Please sign in to comment.