Files
sjy01-image-proc/vendor/github.com/go-latex/latex/.travis.yml
2024-10-24 15:46:01 +08:00

42 lines
526 B
YAML

sudo: false
go_import_path: github.com/go-latex/latex
language: go
go:
- 1.14.x
- 1.13.x
- master
os:
- linux
arch:
- amd64
env:
global:
- GO111MODULE=on
- GOFLAGS="-mod=readonly"
cache:
directories:
- $HOME/.cache/go-build
- $HOME/gopath/pkg/mod
git:
depth: 1
autocrlf: input
matrix:
fast_finish: true
allow_failures:
- go: master
script:
- go install -v ./...
- go run ./ci/run-tests.go -coverpkg=github.com/go-latex/latex/... -race
after_success:
- bash <(curl -s https://codecov.io/bash)