aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 9f3251d5d67c439e5f7748bd6f33d9f801fffdda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
language: go
services:
  - mysql

env:
  - SUITE=lint
  - SUITE=test

go:
  - 1.12.x
  - 1.11.x
  - 1.10.x
  - tip

matrix:
  allow_failures:
    - go: tip
  fast_finish: true

before_install:
  - make dep
  - mysql -e 'CREATE DATABASE certs;'

install:
  - go version

sudo: false
script:
  - MYSQL_TEST="true" make $SUITE

after_success:
  - bash <(curl -s https://codecov.io/bash)