Skip to content

Commit e41d575

Browse files
authored
Update README.md
1 parent f3cbdf8 commit e41d575

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,19 @@ jobs:
2222
full_ci:
2323
strategy:
2424
matrix:
25-
go-version: [ 1.14.x ]
25+
go_version: [ 1.18.x ]
2626

27-
runs-on: ubuntu-18.04
27+
runs-on: ubuntu-20.04
2828

2929
steps:
3030
- name: checkout
3131
uses: actions/checkout@v2
3232

33+
- name: Set up Go
34+
uses: actions/setup-go@v3
35+
with:
36+
go-version: ${{ matrix.go_version }}
37+
3338
- name: run tests
3439
run: go test -json ./... > test.json
3540

0 commit comments

Comments
 (0)