chore: Delete old dotfiles from swf-rs

This commit is contained in:
Mike Welsh 2019-10-03 00:26:23 -07:00
parent 52b6832db2
commit 336eace45e
2 changed files with 0 additions and 22 deletions

4
swf/.gitignore vendored
View File

@ -1,4 +0,0 @@
target
Cargo.lock
rustfmt.toml
*.bk

View File

@ -1,18 +0,0 @@
language: rust
rust:
- stable
- beta
- nightly
cache: cargo
matrix:
allow_failures:
- rust: nightly
before_script:
- export PATH="$PATH:$HOME/.cargo/bin"
- (test $TRAVIS_RUST_VERSION != "nightly" || cargo install rustfmt-nightly || true)
script:
- (test $TRAVIS_RUST_VERSION != "nightly" || cargo fmt -- --write-mode=diff)
- (test $TRAVIS_RUST_VERSION != "nightly" || cargo build --features "clippy")
- (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --features "clippy")
- (test $TRAVIS_RUST_VERSION == "nightly" || cargo build)
- (test $TRAVIS_RUST_VERSION == "nightly" || cargo test)