Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split into multiple crates #49

Merged
merged 3 commits into from
Aug 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,31 @@ matrix:
install:
- rustup component add rustfmt
script:
- cargo fmt -- --check
- cargo fmt --all -- --check
- env: RUSTFLAGS="-D warnings"
rust: 1.35.0 # `stable`: Locking down for consistent behavior
install:
script:
- cargo check --tests
- cargo check --tests --all
- env: CLIPPY
rust: 1.35.0 # `stable`: Locking down for consistent behavior
install:
- rustup component add clippy
script:
- cargo clippy --all-features
- cargo clippy --all-features --all
- env: BENCH
rust: nightly
script:
- cargo bench
- cargo bench --all

install:
- rustc -Vv
- cargo -V
- export PATH=$HOME/.cargo/bin:$PATH

script:
- cargo check --verbose
- cargo test --verbose
- cargo check --verbose --all
- cargo test --verbose --all

branches:
only:
Expand Down
Loading