diff --git a/README.md b/README.md index ac362ac..c2d0e62 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Struct-based database access layer for Go -[![Build Status](https://github.com/bool64/sqluct/workflows/test/badge.svg)](https://github.com/bool64/sqluct/actions?query=branch%3Amaster+workflow%3Atest) +[![test-unit](https://github.com/bool64/sqluct/actions/workflows/test-unit.yml/badge.svg)](https://github.com/bool64/sqluct/actions/workflows/test-unit.yml) [![Coverage Status](https://codecov.io/gh/bool64/sqluct/branch/master/graph/badge.svg)](https://codecov.io/gh/bool64/sqluct) [![GoDevDoc](https://img.shields.io/badge/dev-doc-00ADD8?logo=go)](https://pkg.go.dev/github.com/bool64/sqluct) [![Time Tracker](https://wakatime.com/badge/github/bool64/sqluct.svg)](https://wakatime.com/badge/github/bool64/sqluct) @@ -309,4 +309,4 @@ query, args, err = s.SelectStmt("products", Product{}).Where(s.WhereEq(Product{ fmt.Println(query, args, err) // This query adds skips both price and name from where condition because SkipZeroValues option is applied. // SELECT id, name, price FROM products WHERE id = $1 [123] -``` \ No newline at end of file +```