mirror of
https://github.com/derf/travelynx
synced 2024-11-14 00:37:16 +00:00
20 lines
349 B
YAML
20 lines
349 B
YAML
language: perl
|
|
perl:
|
|
- "5.30"
|
|
- "5.28"
|
|
- "5.26"
|
|
services:
|
|
- postgresql
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libcache-perl
|
|
- libdb-dev
|
|
- libpq-dev
|
|
- libxml2-dev
|
|
postgresql: "9.4"
|
|
before_script:
|
|
- cp .travis.travelynx.conf travelynx.conf
|
|
- psql -c 'create database travelynx_ci_test;' -U postgres
|
|
script:
|
|
- prove -lv
|