mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 11:00:43 +00:00
21 lines
222 B
Plaintext
21 lines
222 B
Plaintext
|
---
|
||
|
kind: pipeline
|
||
|
name: test
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: test
|
||
|
image: ruby:2.2
|
||
|
commands:
|
||
|
- bundle install
|
||
|
- bundle exec rake spec
|
||
|
|
||
|
services:
|
||
|
- name: postgres-9-3
|
||
|
image: postgres:9.3
|
||
|
|
||
|
...
|