From e41d5757068067f0f1b734cf28651056a3331b6a Mon Sep 17 00:00:00 2001 From: Guy Arbitman Date: Sun, 3 Apr 2022 08:34:52 +0300 Subject: [PATCH] Update README.md --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85ac078..275aab0 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,19 @@ jobs: full_ci: strategy: matrix: - go-version: [ 1.14.x ] + go_version: [ 1.18.x ] - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - name: checkout uses: actions/checkout@v2 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: ${{ matrix.go_version }} + - name: run tests run: go test -json ./... > test.json