Skip to content

Commit

Permalink
Update test to currently supported go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
arnested authored and dependabot[bot] committed Aug 21, 2022
1 parent 6c5bb47 commit 2bd11b8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
- run: |
test '${{ steps.go-version-1.outputs.minimal }}' == '1.16'
- run: |
test '${{ steps.go-version-1.outputs.latest }}' == '1.18'
test '${{ steps.go-version-1.outputs.latest }}' == '1.19'
- run: |
test '${{ steps.go-version-1.outputs.matrix }}' == '["1.16","1.17","1.18"]'
test '${{ steps.go-version-1.outputs.matrix }}' == '["1.16","1.17","1.18","1.19"]'
- uses: ./
id: go-version-2
with:
Expand All @@ -49,11 +49,11 @@ jobs:
- run: |
test '${{ steps.go-version-2.outputs.go-mod-version }}' == '1.16'
- run: |
test '${{ steps.go-version-2.outputs.minimal }}' == '1.17'
test '${{ steps.go-version-2.outputs.minimal }}' == '1.18'
- run: |
test '${{ steps.go-version-2.outputs.latest }}' == '1.18'
test '${{ steps.go-version-2.outputs.latest }}' == '1.19'
- run: |
test '${{ steps.go-version-2.outputs.matrix }}' == '["1.17","1.18"]'
test '${{ steps.go-version-2.outputs.matrix }}' == '["1.18","1.19"]'
- uses: ./
id: go-version-3
with:
Expand All @@ -65,8 +65,8 @@ jobs:
- run: |
test '${{ steps.go-version-3.outputs.go-mod-version }}' == '1.16'
- run: |
test '${{ steps.go-version-3.outputs.minimal }}' == '1.17.12'
test '${{ steps.go-version-3.outputs.minimal }}' == '1.18.5'
- run: |
test '${{ steps.go-version-3.outputs.latest }}' == '1.18.4'
test '${{ steps.go-version-3.outputs.latest }}' == '1.19'
- run: |
test '${{ steps.go-version-3.outputs.matrix }}' == '["1.17.12","1.18.4"]'
test '${{ steps.go-version-3.outputs.matrix }}' == '["1.18.5","1.19"]'

0 comments on commit 2bd11b8

Please sign in to comment.