dip/.travis.yml
2018-08-26 21:53:28 -05:00

30 lines
461 B
YAML

language: rust
sudo: false
rust:
- stable
- beta
- nightly
os: linux
matrix:
fast_finish: true
cache: cargo
script:
- cargo test --all
before_deploy:
- cargo build --release --all
- cargo build --release --examples
deploy:
- provider: releases
api_key: $AUTH_TOKEN
file:
- target/release/dip
- target/release/examples/github
on:
condition: $TRAVIS_RUST_VERSION = stable
tags: true
skip_cleanup: true