From 93f2f544563b7b0c71c9f4ac55485f71aa2c468b Mon Sep 17 00:00:00 2001 From: Antoine Pourchet Date: Tue, 9 Jan 2024 12:11:42 -0700 Subject: [PATCH] Readme: Add go pkg badge and unit test status badge --- .github/workflows/unit-tests.yml | 2 +- README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index d7fa701..6d6f8e0 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -1,4 +1,4 @@ -name: Run Unit Tests +name: Unit Tests on: [push] diff --git a/README.md b/README.md index 8390f6b..0ff9607 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # httpwrap ---------- +[![Go Reference](https://pkg.go.dev/badge/github.com/apourchet/httpwrap.svg)](https://pkg.go.dev/github.com/apourchet/httpwrap) +![Unit Tests Workflow](https://github.com/apourchet/httpwrap/actions/workflows/unit-tests.yml/badge.svg) `httpwrap` is a thin wrapper around the default http library that lets you compose handlers and automatically inject outputs into the inputs of the next handler.