From ac050e5e3a8dbc99bc8a1c325cbf113a09061e9a Mon Sep 17 00:00:00 2001 From: Pieter Joost van de Sande Date: Tue, 19 Jan 2021 17:22:23 +0100 Subject: [PATCH] ci: include upcoming go1.16 in build matrix (#124) --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c5499e03..ec593d61 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,13 +11,14 @@ jobs: strategy: fail-fast: false matrix: - go-version: [1.14.x, 1.15.x] + go-version: [1.14.x, 1.15.x, 1.16.0-beta1] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - name: Install Go uses: actions/setup-go@v2 with: + stable: false go-version: ${{ matrix.go-version }} - name: Checkout code uses: actions/checkout@v2