mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-19 12:57:52 +00:00
41 lines
369 B
YAML
41 lines
369 B
YAML
language: python
|
|
python:
|
|
- 2.7
|
|
|
|
###
|
|
### Add services
|
|
###
|
|
services:
|
|
- docker
|
|
|
|
|
|
###
|
|
### Global variables
|
|
###
|
|
env:
|
|
global:
|
|
# Get .env default versions
|
|
- VAR=VAL
|
|
|
|
###
|
|
### Berfore Install
|
|
###
|
|
before_install:
|
|
# List versions
|
|
- docker version
|
|
- docker-compose version
|
|
|
|
###
|
|
### Install
|
|
###
|
|
install:
|
|
- true
|
|
|
|
|
|
|
|
###
|
|
### Test
|
|
###
|
|
script:
|
|
- .tests/test.sh .
|