18 lines
244 B
YAML
18 lines
244 B
YAML
image: "elixir:1.10"
|
|
|
|
cache:
|
|
paths:
|
|
- _build
|
|
- deps
|
|
|
|
variables:
|
|
POSTGRES_PASSWORD: "postgres"
|
|
POSTGRES_USER: "postgres"
|
|
DATABASE_URL: "postgres"
|
|
MIX_ENV: "test"
|
|
|
|
services:
|
|
- name: postgres:12
|
|
|
|
tests:
|
|
script: script/cibuild
|