From 960029986cb40d043dc4b1082fcd73225de72358 Mon Sep 17 00:00:00 2001 From: auyer Date: Mon, 26 Sep 2022 10:20:47 -0300 Subject: [PATCH] Updates test matrix to 1.16 ~ 1.19 --- .github/workflows/test.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e68b6d6..4aaa51f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,14 +9,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: [ '^1.16', '~1.12' ] + go: [ '^1.19', '~1.16' ] name: Go ${{ matrix.go }} sample steps: - name: Checkout repo uses: actions/checkout@v2 - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go }} @@ -30,15 +30,15 @@ jobs: uses: actions/checkout@v2 - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: - go-version: "^1.16" + go-version: "^1.19" - name: Run tests with Coverage report run: | go test -coverprofile=coverage.txt -covermode=atomic - name: Upload coverage report - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: - file: ./coverage.txt \ No newline at end of file + file: ./coverage.txt