lemmy/.travis.yml
Dessalines d2f234927d Travis
2019-04-06 09:03:55 -07:00

26 lines
555 B
YAML

language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
cache: cargo
services:
- postgresql
before_script:
- psql -c "create user rrr with password 'rrr' superuser;" -U postgres
- psql -c 'create database rrr with owner rrr;' -U postgres
before_install:
- cd server
script:
- cargo install diesel_cli --no-default-features --features postgres
- cargo build
- diesel migration run
- cargo build --all
- cargo test --all
env:
- DATABASE_URL=postgres://rrr:rrr@localhost/rrr