Skip to content

Commit

Permalink
ci/docs: update go versions
Browse files Browse the repository at this point in the history
Squashed commit of the following:

commit de18fe9
Author: Ken Hibino <[email protected]>
Date:   Sun Sep 17 19:35:33 2023 -0700

    Update README about supported Go versions

commit 714d62b
Author: Ken Hibino <[email protected]>
Date:   Sun Sep 17 19:26:16 2023 -0700

    Bound build to the latest two go versions
  • Loading branch information
kamikazechaser committed Dec 7, 2023
1 parent c185b9e commit d29f0e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit d29f0e2

Please sign in to comment.