Skip to content

Commit

Permalink
Added more golang version in workflow matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jahnestacado committed Sep 2, 2022
1 parent f9a4a32 commit af68405
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.14', '1.13' ]
go: [ '1.13', '1.14', '1.15', '1.16', '1.17', '1.18' ]
name: Go ${{ matrix.go }} sample
steps:
- uses: actions/checkout@v2
Expand All @@ -24,6 +24,7 @@ jobs:
- name: Upload test coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
fail_ci_if_error: true
verbose: true
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/jahnestacado/tlru

go 1.13
go 1.18

require github.com/stretchr/testify v1.5.1

0 comments on commit af68405

Please sign in to comment.