File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed
Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ name = "go"
55enabled = true
66
77 [analyzers .meta ]
8- import_root = " github.com/krakendio /httpcache"
8+ import_root = " github.com/krakend /httpcache"
99
1010[[transformers ]]
1111name = " gofmt"
1212enabled = true
1313
1414[[transformers ]]
1515name = " gofumpt"
16- enabled = true
16+ enabled = true
Original file line number Diff line number Diff line change 88
99jobs :
1010 build :
11- runs-on : ubuntu-20.04
11+ runs-on : ubuntu-latest
1212 steps :
1313 - name : Checkout
14- uses : actions/checkout@v3
14+ uses : actions/checkout@v4
1515 - name : Test
1616 uses : docker://krakend/builder:latest-linux-generic
1717 with :
1818 args : sh -c "go get -t -v ./...;
1919 gofmt -w -s . && git diff --exit-code;
2020 go tool vet .;
21- go test -v -race ./..."
21+ go test -v -race ./..."
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ httpcache
44This a fork of github.com/gregjones/httpcache which includes various fixes.
55Original backends are removed since are not used by KrakenD.
66
7- [ ![ GoDoc] ( https://godoc.org/github.com/krakendio /httpcache?status.svg )] ( https://godoc.org/github.com/krakendio /httpcache )
7+ [ ![ GoDoc] ( https://godoc.org/github.com/krakend /httpcache?status.svg )] ( https://godoc.org/github.com/krakend /httpcache )
88
99Package httpcache provides a http.RoundTripper implementation that works as a mostly [ RFC 7234] ( https://tools.ietf.org/html/rfc7234 ) compliant cache for http responses.
1010
Original file line number Diff line number Diff line change 1- module github.com/krakendio /httpcache
1+ module github.com/krakend /httpcache
22
33go 1.19
Original file line number Diff line number Diff line change 44 "bytes"
55 "testing"
66
7- "github.com/krakendio /httpcache"
7+ "github.com/krakend /httpcache"
88)
99
1010// Cache excercises a httpcache.Cache implementation.
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ package test_test
33import (
44 "testing"
55
6- "github.com/krakendio /httpcache"
7- "github.com/krakendio /httpcache/test"
6+ "github.com/krakend /httpcache"
7+ "github.com/krakend /httpcache/test"
88)
99
1010func TestMemoryCache (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments