From 62213997bcabbd72975e920a770b4d5c3a5d83d8 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Thu, 10 Sep 2020 23:53:05 +0200 Subject: [PATCH] Add badges to README (#2) * Add badges to README * update go.sum * update gitignore --- .gitignore | 3 +++ README.md | 2 ++ go.sum | 1 + 3 files changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 6543389..5dbda69 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,6 @@ _test # MS VSCode .vscode __debug_bin + +# vendor files +vendor/ diff --git a/README.md b/README.md index 21fefd4..50c5ab3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Hex Color Library for Go +![Test](https://github.com/6543/go-hexcolor/workflows/Test/badge.svg?event=push) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![GoDoc](https://godoc.org/github.com/6543/go-hexcolor?status.svg)](https://godoc.org/github.com/6543/go-hexcolor) [![Go Report Card](https://goreportcard.com/badge/github.com/6543/go-hexcolor)](https://goreportcard.com/report/github.com/6543/go-hexcolor) + ## Features: * Normalize/Parse hex color * convert from/to color.RGBA diff --git a/go.sum b/go.sum index 56d62e7..afe7890 100644 --- a/go.sum +++ b/go.sum @@ -5,6 +5,7 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=