vendor/github.com/russross/blackfriday/.travis.yml
author Mikael Berthe <mikael@lilotux.net>
Mon, 07 Jun 2021 20:58:18 +0200
changeset 255 4f153a23adab
parent 251 1c52a0eeb952
permissions -rw-r--r--
Merge pull request #26 from Strubbl/update-deps Update module dependencies committer: GitHub <noreply@github.com>

sudo: false
language: go
go:
  - "1.9.x"
  - "1.10.x"
  - tip
matrix:
  fast_finish: true
  allow_failures:
    - go: tip
install:
  - # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script:
  - go get -t -v ./...
  - diff -u <(echo -n) <(gofmt -d -s .)
  - go tool vet .
  - go test -v -race ./...