lemmy/.travis.yml
2020-01-02 12:52:08 +01:00

29 lines
779 B
YAML
Vendored

language: rust
rust:
- stable
matrix:
allow_failures:
- rust: nightly
fast_finish: true
cache:
directories:
- /home/travis/.cargo
before_cache:
- rm -rf /home/travis/.cargo/registry
before_script:
- psql -c "create user lemmy with password 'password' superuser;" -U postgres
- psql -c 'create database lemmy with owner lemmy;' -U postgres
- rustup component add clippy --toolchain stable-x86_64-unknown-linux-gnu
before_install:
- cd server
script:
# Default checks, but fail if anything is detected
- cargo clippy -- -D clippy::style -D clippy::correctness -D clippy::complexity -D clippy::perf
- cargo build
- diesel migration run
- cargo test
env:
- DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
addons:
postgresql: "9.4"