diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9d58206..0000000 --- a/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: rust -rust: - - stable - -script: - - cargo build --verbose - - cargo test --verbose - - cargo build --verbose --release - - cargo test --verbose --release diff --git a/README.md b/README.md index 0a3d06b..8535e4e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # md-pdf -[![Travis](https://img.shields.io/travis/hoily/md-pdf.svg?style=flat-square)](https://travis-ci.org/hoily/md-pdf) +[![CircleCI](https://img.shields.io/circleci/project/github/hoily/md-pdf.svg?style=flat-square)](https://circleci.com/gh/hoily/md-pdf) Convert markdown files into PDF Documents. diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000..b83e566 --- /dev/null +++ b/circle.yml @@ -0,0 +1,14 @@ +machine: + environment: + PATH: "$HOME/.cargo/bin:$PATH" + +dependencies: + pre: + - curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y + +test: + override: + - cargo build + - cargo build --release + - cargo test + - cargo test --release