Skip to content

Commit

Permalink
Merge pull request #572 from shogo82148/drop-support-of-go1.18
Browse files Browse the repository at this point in the history
drop support of Go 1.18
  • Loading branch information
shogo82148 authored Jun 13, 2024
2 parents 6e10380 + 4082201 commit 5d3bff2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
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

0 comments on commit 5d3bff2

Please sign in to comment.