Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test with Go 1.19 #38

Merged
merged 1 commit into from Dec 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
test:
strategy:
matrix:
go: [ '1.13', '1.15' ]
go: [ '1.13', '1.15', '1.16', '1.17', '1.18', '1.19' ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
fail-fast: false

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Expand Up @@ -16,17 +16,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set up Go 1.15
uses: actions/setup-go@v2
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.15
go-version: 1.19

- name: Check out code
uses: actions/checkout@v2

- name: Verify dependencies
env:
LINT_VERSION: 1.33.0
LINT_VERSION: 1.50.1
run: |
go mod verify
go mod download
Expand Down