mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 03:00:38 +00:00
16 lines
249 B
YAML
16 lines
249 B
YAML
|
image:
|
||
|
name: ruby:2.2
|
||
|
entrypoint: ["/bin/bash"]
|
||
|
|
||
|
services:
|
||
|
- name: my-postgres:9.4
|
||
|
alias: db-postgres
|
||
|
entrypoint: ["/usr/local/bin/db-postgres"]
|
||
|
command: ["start"]
|
||
|
|
||
|
before_script:
|
||
|
- bundle install
|
||
|
|
||
|
test:
|
||
|
script:
|
||
|
- bundle exec rake spec
|