Skip to content

Commit

Permalink
ci: test with golang 1.16-rc1
Browse files Browse the repository at this point in the history
Courtesy of actions/setup-go#92

[v2: update from beta1 to rc1]

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
  • Loading branch information
kolyshkin authored and dqminh committed Feb 3, 2021
1 parent d1d216b commit 3a7076d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ 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-rc1]
rootless: ["rootless", ""]

steps:
Expand All @@ -40,6 +40,7 @@ jobs:
- name: install go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
stable: '!contains(${{ matrix.go-version }}, "beta") && !contains(${{ matrix.go-version }}, "rc")'
go-version: ${{ matrix.go-version }}

- name: build
Expand Down

0 comments on commit 3a7076d

Please sign in to comment.