Skip to content

Commit

Permalink
Updates test matrix to 1.16 ~ 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
auyer committed Sep 26, 2022
1 parent 24f85f6 commit 9600299
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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
file: ./coverage.txt

0 comments on commit 9600299

Please sign in to comment.