album/.travis.yml

21 lines
456 B
YAML
Raw Normal View History

2015-11-26 19:30:19 +03:00
language: rust
2017-07-27 19:35:45 +04:00
rust:
- stable
- beta
2016-09-23 18:16:11 +03:00
cache: cargo
services:
- postgresql
before_script:
2016-09-23 18:16:11 +03:00
- cargo update || true
2016-06-05 00:46:49 +03:00
- echo "DATABASE_URL=postgres://localhost/rphotos" > .env
2016-09-23 18:16:11 +03:00
- cargo install -v diesel_cli --no-default-features --features postgres || true
2016-06-05 01:57:38 +03:00
- $HOME/.cargo/bin/diesel setup
matrix:
include:
- rust: nightly
env: TASK=rustfmt
before_script:
- rustup component add rustfmt-preview
script:
2018-07-06 01:28:57 +04:00
- cargo fmt -- --check