-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump tested Go versions to just 1.20 and 1.21
- Loading branch information
1 parent
0fedb9f
commit 7bfbb27
Showing
1 changed file
with
14 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,29 @@ | ||
--- | ||
name: Test | ||
|
||
on: | ||
- pull_request | ||
"on": | ||
- pull_request | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
go: | ||
- 1.14 | ||
- 1.15 | ||
- 1.16 | ||
- 1.17 | ||
- "1.20" | ||
- "1.21" | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Go ${{ matrix.go }} | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: Setup Go ${{ matrix.go }} | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
|
||
- name: Download Dependencies | ||
run: go mod download | ||
- name: Download Dependencies | ||
run: go mod download | ||
|
||
- name: Run Tests | ||
run: make test | ||
- name: Run Tests | ||
run: make test |