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

drop support of Go 1.18 #572

Merged
merged 1 commit into from
Jun 13, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Test
on: [push, pull_request]

env:
GO111MODULE: "on"

jobs:
test:
name: Go ${{ matrix.go }} Test on ${{ matrix.os }}
Expand All @@ -17,17 +14,10 @@ jobs:
- macos-latest
go:
- "stable"
- "1.22"
- "1.21"
- "1.20"
- "1.19"
- "1.18"
goexperiment: [""]
include:
# test with GOEXPERIMENT=loopvar
# https://github.com/golang/go/wiki/LoopvarExperiment
- go: "1.21"
os: ubuntu-latest
goexperiment: "loopvar"

steps:
- name: Check out code
Expand All @@ -44,8 +34,6 @@ jobs:
make test-xrayaws
make test-xrayaws-v2
shell: bash
env:
GOEXPERIMENT: ${{ matrix.goexperiment }}

- name: Send coverage
uses: shogo82148/actions-goveralls@v1
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/shogo82148/aws-xray-yasdk-go

go 1.18
go 1.19

require (
github.com/google/go-cmp v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion xrayaws-v2/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/shogo82148/aws-xray-yasdk-go/xrayaws-v2

go 1.18
go 1.19

require (
github.com/aws/aws-sdk-go-v2 v1.27.2
Expand Down