Skip to content

Commit

Permalink
ci: add build infos
Browse files Browse the repository at this point in the history
  • Loading branch information
jeamon committed Nov 2, 2023
1 parent 3b167f0 commit acc9c73
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,8 @@ jobs:
version: v1.54
args: -v --timeout=5m --issues-exit-code=0
- name: Run Tests
run: make test-cover
run: make test-cover
- name: Upload coverage
uses: codecov/codecov-action@v1
with:
verbose: true
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# gorqs

![Build Status](https://github.com/jeamon/gorqs/actions/workflows/ci.yml/badge.svg?branch=main)
[![godoc](https://godoc.org/github.com/jeamon/gorqs?status.svg)](https://godoc.org/github.com/jeamon/gorqs)
[![Go Report Card](https://goreportcard.com/badge/github.com/jeamon/gorqs)](https://goreportcard.com/report/github.com/jeamon/gorqs)
[![MIT License](https://img.shields.io/github/license/jeamon/gorqs)](https://github.com/jeamon/gorqs/blob/main/LICENSE)

`gorqs` means *Go Runnable Queue Service*. This is a multi-features go-based concurrent-safe library to **queue & execute** jobs and records their execution result. You can start the Queue service into synchronous or asynchronous mode.
The mode defines wether each added job should be processed *synchronously* or *asynchronously*. Be aware that adding a job to the Queue system is always a non-blocking operation and returns the job id on success.

Expand Down

0 comments on commit acc9c73

Please sign in to comment.