Skip to content

Commit 97ef1ed

Browse files
authored
Merge pull request #214 from byexamples/Issue-212-Golang-Test-Failing
Issue #212: require Golang 1.16 and 1.17 for CI
2 parents e4d0f05 + 6432e4a commit 97ef1ed

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
runs-on: ubuntu-latest
141141
strategy:
142142
matrix:
143-
go-version: ["1.14", "1.13"]
143+
go-version: ["1.17", "1.16"]
144144
steps:
145145
- uses: actions/checkout@v2
146146
- name: Setup python
@@ -149,8 +149,9 @@ jobs:
149149
python-version: "3.6"
150150
- name: Setup go
151151
uses: actions/setup-go@v2
152-
#with:
153-
# go-version: ${{ matrix.go-version }}
152+
with:
153+
go-version: ${{ matrix.go-version }}
154+
- run: go version
154155
- run: make deps-dev
155156
- run: go get -u github.com/traefik/yaegi/cmd/yaegi
156157
- run: PATH=$PATH:$(go env GOPATH)/bin make lang-go-test

0 commit comments

Comments
 (0)