diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-07-25 22:53:48 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-07-25 22:55:55 +0200 |
commit | fef929c1ecc3a3f41f95e1f4d7b6d717e4ee6eb8 (patch) | |
tree | 2e602cce55c7f615dec98f0ca0b79d2be7a5ef49 /.travis.yml | |
parent | b6756b4ead7d1d1b379d42731a6e09d782ad6668 (diff) | |
download | askama-fef929c1ecc3a3f41f95e1f4d7b6d717e4ee6eb8.tar.gz askama-fef929c1ecc3a3f41f95e1f4d7b6d717e4ee6eb8.tar.bz2 askama-fef929c1ecc3a3f41f95e1f4d7b6d717e4ee6eb8.zip |
Remove Travis and Appveyor configuration
Diffstat (limited to '')
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 343cc63..0000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: rust -rust: - - stable - - beta - - nightly -cache: cargo - -before_script: -- if [[ "${TRAVIS_RUST_VERSION}" == stable ]]; then - rustup component add rustfmt; - fi - -script: -- cargo test --all -- if [[ "${TRAVIS_RUST_VERSION}" == stable ]]; then - cd testing && cargo test --features full && cargo fmt -- --check; - fi -- if [[ "${TRAVIS_RUST_VERSION}" == nightly ]]; then - cd testing && cargo test --features with-rocket; - fi |