diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c0cfd9a8..00000000 --- a/.travis.yml +++ /dev/null @@ -1,19 +0,0 @@ -language: rust -sudo: false -cache: cargo -env: RUN=TEST -rust: -- nightly -- beta -- stable -matrix: - include: - - rust: stable - env: RUN=RUSTFMT - before_script: rustup component add rustfmt - script: - - cargo check - - cargo fmt --all -- --check -script: -- cargo build --verbose -- cargo test --verbose diff --git a/README.md b/README.md index d600c518..0aceca8a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# osmpbfreader-rs [![Build status](https://travis-ci.com/TeXitoi/osmpbfreader-rs.svg?branch=master)](https://travis-ci.com/TeXitoi/osmpbfreader-rs) [![](https://ci.appveyor.com/api/projects/status/0po5osv2wjb6v07m/branch/master?svg=true)](https://ci.appveyor.com/project/TeXitoi/osmpbfreader-rs/branch/master) [![](https://img.shields.io/crates/v/osmpbfreader.svg)](https://crates.io/crates/osmpbfreader) [![](https://docs.rs/osmpbfreader/badge.svg)](https://docs.rs/osmpbfreader) +# osmpbfreader-rs [![](https://img.shields.io/crates/v/osmpbfreader.svg)](https://crates.io/crates/osmpbfreader) [![](https://docs.rs/osmpbfreader/badge.svg)](https://docs.rs/osmpbfreader) Read [OpenStreetMap PBF files](http://wiki.openstreetmap.org/wiki/PBF_Format) with diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index b4f33b64..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,15 +0,0 @@ -# Based on https://github.com/starkat99/appveyor-rust -os: Visual Studio 2015 -environment: - matrix: - - channel: stable - target: x86_64-pc-windows-msvc -install: - - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - - rustup-init -yv --default-toolchain %channel% --default-host %target% - - set PATH=%PATH%;%USERPROFILE%\.cargo\bin - - rustc -vV - - cargo -vV -build: false -test_script: - - cargo test --verbose