summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/gomarkdown/markdown/.travis.yml
blob: 4ec5d7b0c9741741619d6db294c2311661f6e8c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
dist: bionic
language: go

go:
  - "1.12.x"

install:
  - go build -v ./...

script:
  - go test -v ./...
  - go test -run=^$ -bench=BenchmarkReference -benchmem
  - ./s/test_with_codecoverage.sh
  - ./s/ci_fuzzit.sh

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