diff --git a/README.md b/README.md index 411cc1aea425a801120e5eca91bef4dfa12990c8..2a56035b759a32a3b99069007769199d0ad51b81 100644 --- a/README.md +++ b/README.md @@ -18,29 +18,16 @@ [![go report card](https://goreportcard.com/badge/github.com/dtapps/go-log)](https://goreportcard.com/report/github.com/dtapps/go-log) [comment]: <> (github.com) -[![latest release](https://badgen.net/github/release/dtapps/go-log)](https://github.com/dtapps/go-log) -[![latest stable release](https://badgen.net/github/release/dtapps/go-log/stable)](https://github.com/dtapps/go-log) -[![latest tag](https://badgen.net/github/tag/dtapps/go-log)](https://github.com/dtapps/go-log) -[![watchers](https://badgen.net/github/watchers/dtapps/go-log)](https://github.com/dtapps/go-log) -[![combined checks (master branch)](https://badgen.net/github/checks/dtapps/go-log)](https://github.com/dtapps/go-log) -[![stars](https://badgen.net/github/stars/dtapps/go-log)](https://github.com/dtapps/go-log) -[![forks](https://badgen.net/github/forks/dtapps/go-log)](https://github.com/dtapps/go-log) -[![issues](https://badgen.net/github/issues/dtapps/go-log)](https://github.com/dtapps/go-log) -[![branches](https://badgen.net/github/branches/dtapps/go-log)](https://github.com/dtapps/go-log) -[![releases](https://badgen.net/github/releases/dtapps/go-log)](https://github.com/dtapps/go-log) -[![tags](https://badgen.net/github/tags/dtapps/go-log)](https://github.com/dtapps/go-log) -[![license](https://badgen.net/github/license/dtapps/go-log)](https://github.com/dtapps/go-log) -[![contributors](https://badgen.net/github/contributors/dtapps/go-log)](https://github.com/dtapps/go-log) -[![assets downloads for latest release](https://badgen.net/github/assets-dl/dtapps/go-log)](https://github.com/dtapps/go-log) -[![repository dependents](https://badgen.net/github/dependents-repo/dtapps/go-log)](https://github.com/dtapps/go-log) -[![package dependents](https://badgen.net/github/dependents-pkg/dtapps/go-log)](https://github.com/dtapps/go-log) -[![dependabot status](https://badgen.net/github/dependabot/dtapps/go-log)](https://github.com/dtapps/go-log) -[![GitHub last commit](https://img.shields.io/github/last-commit/dtapps/go-log?style=for-the-badge)](https://github.com/dtapps/go-log) -[![GitHub commit activity](https://img.shields.io/github/commit-activity/w/dtapps/go-log?style=for-the-badge)](https://github.com/dtapps/go-log) -[![Github All Contributors](https://img.shields.io/github/all-contributors/dtapps/go-log/master?style=for-the-badge)](https://github.com/dtapps/go-log) -[![GitHub go.mod Go version (branch)](https://img.shields.io/github/go-mod/go-version/dtapps/go-version/master?style=for-the-badge)](https://github.com/dtapps/go-log) +[![watchers](https://badgen.net/github/watchers/dtapps/go-log)](https://github.com/dtapps/go-log/watchers) +[![stars](https://badgen.net/github/stars/dtapps/go-log)](https://github.com/dtapps/go-log/stargazers) +[![forks](https://badgen.net/github/forks/dtapps/go-log)](https://github.com/dtapps/go-log/network/members) +[![issues](https://badgen.net/github/issues/dtapps/go-log)](https://github.com/dtapps/go-log/issues) +[![branches](https://badgen.net/github/branches/dtapps/go-log)](https://github.com/dtapps/go-log/branches) +[![releases](https://badgen.net/github/releases/dtapps/go-log)](https://github.com/dtapps/go-log/releases) +[![tags](https://badgen.net/github/tags/dtapps/go-log)](https://github.com/dtapps/go-log/tags) +[![license](https://badgen.net/github/license/dtapps/go-log)](https://github.com/dtapps/go-log/blob/master/LICENSE) +[![contributors](https://badgen.net/github/contributors/dtapps/go-log)](https://github.com/dtapps/go-log/CONTRIBUTING.md) [![GitHub go.mod Go version (subdirectory of monorepo)](https://img.shields.io/github/go-mod/go-version/dtapps/go-log?style=for-the-badge)](https://github.com/dtapps/go-log) -[![GitHub go.mod Go version (branch & subdirectory of monorepo)](https://img.shields.io/github/go-mod/go-version/dtapps/go-log/master?style=for-the-badge)](https://github.com/dtapps/go-log) [![GitHub release (latest by date)](https://img.shields.io/github/v/release/dtapps/go-log?style=for-the-badge)](https://github.com/dtapps/go-log) [![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/dtapps/go-log?style=for-the-badge)](https://github.com/dtapps/go-log) [![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/dtapps/go-log?style=for-the-badge)](https://github.com/dtapps/go-log) diff --git a/codeql-analysis.yml b/codeql-analysis.yml new file mode 100644 index 0000000000000000000000000000000000000000..2375558f7d9ccc9618b76b188196e09aa381d2e9 --- /dev/null +++ b/codeql-analysis.yml @@ -0,0 +1,19 @@ +- name: GoLang Test + # You may pin to the exact commit or the version. + # uses: n8maninger/action-golang-test@a8263fc1a85b63937b1b365946518675ceab5740 + uses: n8maninger/action-golang-test@v1 + with: + # the package to run the tests for + package: # optional, default is ./... + # additional go test command line arguments, individual arguments should be separated by ';' + args: # optional, default is + # outputs a warning for long running tests, -1 to disable + show-long-running-tests: # optional, default is 30 + # includes package output in the parsed output + show-package-output: # optional + # shows tests that were run and passed + show-passed-tests: # optional + # shows the unparsed std-out from go test instead of the parsed output + show-stdout: # optional + # skips installing and setting up Go, useful for defining additional parameters for actions/setup-go + skip-go-install: # optional \ No newline at end of file