view vendor/github.com/russross/blackfriday/v2/.travis.yml @ 71:7819959ac6ca draft

feat: move the blackfriday extension settings out of the render function, improve documentation Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author yakumo.izuru
date Tue, 03 Oct 2023 02:39:08 +0000
parents 787b5ee0289d
children
line wrap: on
line source

sudo: false
language: go
go:
  - "1.10.x"
  - "1.11.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 ./...