From 3f23ca21afcb36dfc4d2e87abe409875f8b4cf4c Mon Sep 17 00:00:00 2001 From: Tony Redondo Date: Wed, 25 Jan 2023 17:08:32 +0100 Subject: [PATCH] Add new go versions to the github action (#12) * Update go.yml * Update go.yml * Update README.md --- .github/workflows/go.yml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2b9a491..b737a8e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,8 +5,8 @@ jobs: name: Test strategy: matrix: - go_version: [1.7, 1.8, 1.9, "1.10", 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17] - os: [ubuntu-latest, windows-latest, macos-latest] + go_version: [1.7, 1.8, 1.9, "1.10", 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19] + os: [ubuntu-latest, windows-latest, macos-11] runs-on: ${{ matrix.os }} steps: - name: Set up Go ${{ matrix.go_version }} diff --git a/README.md b/README.md index cd65c59..06cec84 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Go library for monkey patching ## Compatibility -- **Go version:** tested from `go1.7` to `go1.17-beta` +- **Go version:** tested from `go1.7` to `go1.19` - **Architectures:** `x86`, `amd64` - **Operating systems:** tested in `macos`, `linux` and `windows`.