Skip to content

Commit

Permalink
Merge pull request #941 from iamemilio/support-1.23
Browse files Browse the repository at this point in the history
test go 1.23
  • Loading branch information
iamemilio authored Aug 2, 2024
2 parents 21bf8ad + ac97a7b commit 2a72368
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/auto_assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
addReviewers: true

# Set to true to add assignees to pull requests
addAssignees: false
addAssignees: true

# A list of reviewers to be added to pull requests (GitHub user name)
reviewers:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autoassign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ jobs:
add-reviews:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.0
- uses: kentaro-m/auto-assign-action@v2.0.0
16 changes: 9 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Go Agent CI
on: pull_request
env:
# Specifies which go version to run integration tests on
INTEGRATION_TESTS_GO_VERSION: 1.21.5
INTEGRATION_TESTS_GO_VERSION: latest

jobs:
go-agent-v3:
Expand All @@ -15,11 +15,13 @@ jobs:
matrix:
include:
# Core Tests on 3 most recent major Go versions
- go-version: 1.19.0
- go-version: 1.20.14
dirs: v3/newrelic,v3/internal,v3/examples
- go-version: 1.20.0
- go-version: 1.21
dirs: v3/newrelic,v3/internal,v3/examples
- go-version: 1.21.0
- go-version: latest
dirs: v3/newrelic,v3/internal,v3/examples
- go-version: 1.23rc2
dirs: v3/newrelic,v3/internal,v3/examples

# Integration Tests on highest Supported Go Version
Expand Down Expand Up @@ -107,11 +109,11 @@ jobs:
matrix:
include:
# Core Tests on 3 most recent major Go versions
- go-version: 1.19.0
- go-version: 1.20.14
dirs: v3/newrelic,v3/internal,v3/examples
- go-version: 1.20.0
- go-version: 1.21
dirs: v3/newrelic,v3/internal,v3/examples
- go-version: 1.21.0
- go-version: latest
dirs: v3/newrelic,v3/internal,v3/examples
steps:
- name: Checkout Code
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is used to build the docker image for the Go Agent's GitHub Action tests
# Default go version if no arguments passed in
ARG GO_VERSION=1.19
ARG GO_VERSION=1.20

# Takes in go version
FROM golang:${GO_VERSION} as builder
Expand Down

0 comments on commit 2a72368

Please sign in to comment.