From 1aa8a3f636eae3163f69cefa8ea1fe3e21333b3b Mon Sep 17 00:00:00 2001 From: Caj Larsson Date: Mon, 9 Jan 2023 14:36:51 +0800 Subject: [PATCH] Woodpecker --- .woodpecker.yml | 5 +++++ README.md | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..c10b577 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,5 @@ +pipeline: + build: + image: golang + commands: + - go test diff --git a/README.md b/README.md index fa501d5..c8d09af 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,14 @@ # go-cache +``` [![test-and-lint](https://github.com/num30/go-cache/actions/workflows/test.yaml/badge.svg)](https://github.com/num30/go-cache/actions/workflows/test.yaml) [![codecov](https://codecov.io/gh/num30/go-cache/branch/main/graph/badge.svg?token=FMvJ4TbC2r)](https://codecov.io/gh/num30/go-cache) [![Go Report Card](https://goreportcard.com/badge/github.com/num30/go-cache)](https://goreportcard.com/report/github.com/num30/go-cache) [![Go Reference](https://pkg.go.dev/badge/github.com/num30/go-cache.svg)](https://pkg.go.dev/github.com/num30/go-cache) +``` +[![status-badge](https://ci.sg.caj.me/api/badges/caj/go-cache/status.svg)](https://ci.sg.caj.me/caj/go-cache) + ℹ️ go-cache is a port of great [go-cache](https://github.com/patrickmn/go-cache) library that was written by @patrickmn. The main defference is that it relies on generics instead of reflection. go-cache is a in-memory key:value store/cache similar to memcached that is