File tree Expand file tree Collapse file tree 5 files changed +38
-19
lines changed
Expand file tree Collapse file tree 5 files changed +38
-19
lines changed Original file line number Diff line number Diff line change 1+ name : Go package
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v4
11+
12+ - name : Set up Go
13+ uses : actions/setup-go@v5
14+ with :
15+ go-version : ' 1.x'
16+
17+ - name : Test
18+ run : go test -v ./...
19+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11go-hostpool
22===========
33
4- [ ![ Build Status] ( https://secure.travis-ci.org/bitly/go-hostpool.png?branch=master )] ( http://travis-ci.org/bitly/go-hostpool ) [ ![ GoDoc] ( https://godoc.org/github.com/bitly/go-hostpool?status.svg )] ( https://godoc.org/github.com/bitly/go-hostpool ) [ ![ GitHub release] ( https://img.shields.io/github/release/bitly/go-hostpool.svg )] ( https://github.com/bitly/go-hostpool/releases/latest )
4+ [ ![ Build Status] ( https://github.com/bitly/go-hostpool/actions/workflows/ci.yaml/badge.svg )] ( https://github.com/bitly/go-hostpool/actions )
5+ [ ![ GoDoc] ( https://pkg.go.dev/badge/github.com/bitly/go-hostpool )] ( https://pkg.go.dev/github.com/bitly/go-hostpool )
6+ [ ![ GitHub release] ( https://img.shields.io/github/release/bitly/go-hostpool.svg )] ( https://github.com/bitly/go-hostpool/releases/latest )
57
68
79A Go package to intelligently and flexibly pool among multiple hosts from your Go application.
@@ -17,4 +19,4 @@ err := _ // (make a request with hostname)
1719hostResponse.Mark (err)
1820```
1921
20- View more detailed documentation on [ godoc.org ] ( http ://godoc.org /github.com/bitly/go-hostpool)
22+ View more detailed documentation on [ pkg.go.dev ] ( https ://pkg.go.dev /github.com/bitly/go-hostpool)
Original file line number Diff line number Diff line change 11module github.com/bitly/go-hostpool
22
3- go 1.13
3+ go 1.18
44
5- require github.com/stretchr/testify v1.4.0
5+ require github.com/stretchr/testify v1.10.0
6+
7+ require (
8+ github.com/davecgh/go-spew v1.1.1 // indirect
9+ github.com/pmezard/go-difflib v1.0.0 // indirect
10+ gopkg.in/yaml.v3 v3.0.1 // indirect
11+ )
Original file line number Diff line number Diff line change 1- github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8 =
2- github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
1+ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
2+ github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
33github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
44github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
5- github.com/stretchr/objx v0.1.0 /go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME =
6- github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk =
7- github.com/stretchr/testify v1.4.0 /go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4 =
5+ github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA =
6+ github.com/stretchr/testify v1.10.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
7+ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
88gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
9- gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw =
10- gopkg.in/yaml.v2 v2.2.2 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
9+ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
10+ gopkg.in/yaml.v3 v3.0.1 /go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM =
You can’t perform that action at this time.
0 commit comments