9 lines
231 B
YAML
9 lines
231 B
YAML
language: rust
|
|
services:
|
|
- postgresql
|
|
before_script:
|
|
- psql -c 'create database fandjango;' -U postgres
|
|
- echo "DATABASE_URL='postgres://postgres@localhost/rphotos'" > .env
|
|
- cargo install -v diesel_cli
|
|
- diesel migration run
|