fixed dependencies

This commit is contained in:
nuknal
2024-10-24 15:46:01 +08:00
parent d16a5bd9c0
commit 1161e8d054
2005 changed files with 690883 additions and 0 deletions

41
vendor/github.com/go-latex/latex/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,41 @@
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)