Skip to content

Commit fd157e3

Browse files
committed
Update go check to currently supported versions
1 parent 6752a4d commit fd157e3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-versions: [1.15.x]
7+
go-versions: [1.15.x, 1.16.x]
88
platform: [ubuntu-latest]
99
runs-on: ${{ matrix.platform }}
1010
steps:

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,8 @@ lint:
5151
check_go_version:
5252
@OUTPUT=`go version`; \
5353
case "$$OUTPUT" in \
54-
*"go1.13"*);; \
55-
*"go1.14"*);; \
5654
*"go1.15"*);; \
55+
*"go1.16"*);; \
5756
*"devel"*);; \
5857
*) \
5958
echo "Expected: go version go1.13.*, go1.14.*, go1.15.*, or devel"; \

0 commit comments

Comments
 (0)