From a97effa27cb30c27e380d7e05a03c7b38eed9e9d Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Fri, 8 Jan 2021 12:22:37 +0000 Subject: [PATCH] build: add go1.16beta1 to the build matrix --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 739a12130..0b5bec7e3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - job_name: ['linux', 'mac', 'windows_amd64', 'windows_386', 'other_os', 'go1.12', 'go1.13', 'go1.14'] + job_name: ['linux', 'mac', 'windows_amd64', 'windows_386', 'other_os', 'go1.12', 'go1.13', 'go1.14', 'go1.16'] include: - job_name: linux @@ -85,6 +85,12 @@ jobs: quicktest: true racequicktest: true + - job_name: go1.16 + os: ubuntu-latest + go: '1.16.0-beta1' + quicktest: true + racequicktest: true + name: ${{ matrix.job_name }} runs-on: ${{ matrix.os }}