0
0
mirror of https://github.com/rls-moe/nyx synced 2025-08-20 12:04:16 +00:00

updated dependencies, using go.mod now

This commit is contained in:
Tim Schuster
2020-04-18 10:09:55 +02:00
parent b9b6004709
commit 371216e338
26 changed files with 292 additions and 256 deletions

6
vendor/github.com/dustin/go-humanize/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,6 @@
#*
*.[568]
*.a
*~
[568].out
_*

18
vendor/github.com/dustin/go-humanize/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,18 @@
sudo: false
language: go
go:
- 1.3.3
- 1.5.4
- 1.6.2
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
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 ./...