From 32f9d9b0a8124eab230f4de6458312130aac5994 Mon Sep 17 00:00:00 2001 From: Gregory Petrosyan Date: Wed, 18 Aug 2021 22:41:50 +0300 Subject: [PATCH] ci: test on Go 1.17 --- .github/workflows/ci.yml | 2 +- strings_example_test.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ac7fa8..9eb5acd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: name: CI strategy: matrix: - go: ['1.14', '1.15', '1.16'] + go: ['1.15', '1.16', '1.17'] os: ['ubuntu-latest', 'windows-latest', 'macOS-latest'] runs-on: ${{ matrix.os }} steps: diff --git a/strings_example_test.go b/strings_example_test.go index 0389eed..c50b068 100644 --- a/strings_example_test.go +++ b/strings_example_test.go @@ -5,6 +5,7 @@ // file, You can obtain one at https://mozilla.org/MPL/2.0/. // String generation depends on the Unicode tables, which change with Go versions: +//go:build go1.16 // +build go1.16 package rapid_test