1language: go
2
3go:
4  - 1.x
5  - tip
6
7# Derived from https://github.com/lib/pq/blob/master/.travis.yml
8before_install:
9  - ./travis/before_install.bash
10
11env:
12  global:
13    - PGX_TEST_DATABASE=postgres://pgx_md5:secret@127.0.0.1/pgx_test
14  matrix:
15    - CRATEVERSION=2.1
16    - PGVERSION=10
17    - PGVERSION=9.6
18    - PGVERSION=9.5
19    - PGVERSION=9.4
20    - PGVERSION=9.3
21
22before_script:
23  - ./travis/before_script.bash
24
25install:
26  - ./travis/install.bash
27
28script:
29  - ./travis/script.bash
30
31matrix:
32  allow_failures:
33    - go: tip
34