index : static-web-server.git

ascending towards madness

author Jose Quintana <joseluisquintana20@gmail.com> 2021-01-13 14:25:42.0 +00:00:00
committer Jose Quintana <joseluisquintana20@gmail.com> 2021-01-13 14:25:42.0 +00:00:00
commit
c63b5495d3bc19d7879c6ddd1f7368cf4474cd37 [patch]
tree
fceaae874a71511012e149ffca96c2a17648e634
parent
6d3e2d19f8b3f6212020595d067935dc7ac2bb13
download
c63b5495d3bc19d7879c6ddd1f7368cf4474cd37.tar.gz

refactor: remove travis-ci



Diff

 .travis.yml | 35 -----------------------------------
 1 file changed, 35 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index eb5a0dd..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,35 +0,0 @@
language: rust
sudo: required
dist: trusty
notifications:
  email: false
addons:
  apt:
    packages:
      - libssl-dev
env:
  - PATH=$HOME/.cargo/bin:$PATH
script:
  - cargo test -j2 --all
matrix:
  fast_finish: true
  include:
    - rust: stable
    # Run rustfmt in its own shard.
    - rust: stable
      env:
        - SHARD=rustfmt
      before_script:
        - rustup component add --toolchain stable rustfmt-preview
      script:
        - echo "Checking project codebase with rustfmt release `cargo fmt --version`."
        - cargo fmt --all -- --check
    # Run Clippy in its own shard.
    - rust: stable
      env:
        - SHARD=clippy
      before_script:
        - rustup component add --toolchain stable clippy
      script:
        - echo "Checking project codebase with Clippy release `cargo clippy --version`."
        - cargo clippy --all --profile test