From e05f0b7196b0948b3f677a329e20a043837b3f40 Mon Sep 17 00:00:00 2001 From: Mohammed Sohail Date: Thu, 7 Dec 2023 10:34:48 +0300 Subject: [PATCH] ci/docs: update go versions Squashed commit of the following: commit de18fe9839da60e927a9e2b143fb57f8c8e0bacc Author: Ken Hibino Date: Sun Sep 17 19:35:33 2023 -0700 Update README about supported Go versions commit 714d62bb75de80590af0e0051fa1d1710ba02895 Author: Ken Hibino Date: Sun Sep 17 19:26:16 2023 -0700 Bound build to the latest two go versions --- .github/workflows/build.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 77067d1..4e21188 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - go-version: [1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x] + go-version: [1.20.x, 1.21.x] runs-on: ${{ matrix.os }} services: redis: diff --git a/README.md b/README.md index a2da8bd..2b20d6b 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ If you are using this package in production, **please consider sponsoring the pr ## Quickstart -Make sure you have Go installed ([download](https://golang.org/dl/)). Version `1.14` or higher is required. +Make sure you have Go installed ([download](https://golang.org/dl/)). Latest two Go versions are supported (See https://go.dev/dl). Initialize your project by creating a folder and then running `go mod init github.com/your/repo` ([learn more](https://blog.golang.org/using-go-modules)) inside the folder. Then install Asynq library with the [`go get`](https://golang.org/cmd/go/#hdr-Add_dependencies_to_current_module_and_install_them) command: