2
0
mirror of https://github.com/hibiken/asynq.git synced 2026-06-21 07:50:32 +08:00

release (v0.27.0): prepare dep updates, silence codecov in PRs

This commit is contained in:
Mohammed Sohail
2026-04-09 12:15:18 +03:00
parent f81c78e68d
commit 5dfbf92903
5 changed files with 35 additions and 14 deletions

View File

@@ -64,6 +64,12 @@ Initialize your project by creating a folder and then running `go mod init githu
go get -u github.com/hibiken/asynq
```
You may use the latest features not available in the last tagged release by installing with:
```sh
go get -u github.com/hibiken/asynq@master
```
Make sure you're running a Redis server locally or from a [Docker](https://hub.docker.com/_/redis) container. Version `4.0` or higher is required.
Next, write a package that encapsulates task creation and task handling.