Skip to content

Instantly share code, notes, and snippets.

@greyblake
Created September 15, 2018 14:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greyblake/a0e4d5a69904ad4bf4588ca36341a62f to your computer and use it in GitHub Desktop.
Save greyblake/a0e4d5a69904ad4bf4588ca36341a62f to your computer and use it in GitHub Desktop.
Minimal rust setup for travis ci
language: rust
rust:
- stable
install:
- rustup component add rustfmt-preview
- rustup component add clippy-preview
script:
- cargo fmt -- --check
- touch ./src/main.rs && cargo clippy -- -D warnings
- cargo test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment