mirror of
https://github.com/adnanh/webhook.git
synced 2025-07-02 17:28:31 +00:00
* Update go-chi dependency to v5 * Update gofrs/uuid dependency to v5 * Update gorilla/mux dependency to v1.8.1 * Update go-humanize dependency to v1.0.1 * Update mxj dependency to v2.7.0 * Update fsnotify dependency to v1.7.0 * Update Go versions in GH build workflow * Update gopkg.in/yaml.v2 indirect dependency to v2.4.0 * Bump GH actions
21 lines
482 B
YAML
21 lines
482 B
YAML
sudo: false
|
|
language: go
|
|
go_import_path: github.com/dustin/go-humanize
|
|
go:
|
|
- 1.13.x
|
|
- 1.14.x
|
|
- 1.15.x
|
|
- 1.16.x
|
|
- stable
|
|
- master
|
|
matrix:
|
|
allow_failures:
|
|
- go: master
|
|
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:
|
|
- diff -u <(echo -n) <(gofmt -d -s .)
|
|
- go vet .
|
|
- go install -v -race ./...
|
|
- go test -v -race ./...
|