This commit is contained in:
Jethro Beekman
2019-03-18 22:53:02 -07:00
parent 008b808e6b
commit 50535bd2c5
3 changed files with 24 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
branches:
only:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Not really necessary, just to get a green badge on “master”
- master
language: rust
dist: xenial
addons:
apt:
packages:
- libclang-dev
env:
- RUST_BACKTRACE=1 LLVM_CONFIG_PATH=llvm-3.8-config
script:
- cargo test --verbose --all
+3
View File
@@ -8,6 +8,9 @@ documentation = "https://docs.rs/cexpr/"
repository = "https://github.com/jethrogb/rust-cexpr"
keywords = ["C","expression","parser"]
[badges]
travis-ci = { repository = "jethrogb/rust-cexpr" }
[dependencies]
nom = {version = "^4", features = ["verbose-errors"] }
+3
View File
@@ -0,0 +1,3 @@
status = [
"continuous-integration/travis-ci/push",
]