Skip to content

Test multiple Go verions in integration-test #2138

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

Closed
Closed
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
9 changes: 7 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,12 @@ jobs:
integration-test:
strategy:
matrix:
runner: [ubuntu-latest, ubuntu-22.04-arm]
runner:
- ubuntu-latest
- ubuntu-22.04-arm
go:
- stable
- oldstable
runs-on: ${{ matrix.runner }}
container: golang:1.24.2-bookworm@sha256:00eccd446e023d3cd9566c25a6e6a02b90db3e1e0bbe26a48fc29cd96e800901
steps:
Expand All @@ -84,7 +89,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
with:
go-version: ${{ env.GO_VERSION }}
go-version: ${{ matrix.go }}
check-latest: true
cache-dependency-path: |
go.sum
Expand Down
2 changes: 1 addition & 1 deletion examples/httpPlusdb/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module go.opentelemetry.io/auto/examples/httpPlusdb

go 1.24.1
go 1.23.0

require github.com/mattn/go-sqlite3 v1.14.27
2 changes: 1 addition & 1 deletion examples/rolldice/frontend/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/auto/examples/rolldice/frontend

go 1.24.1
go 1.23.0

replace go.opentelemetry.io/auto/examples/rolldice/user => ../user/

Expand Down
2 changes: 1 addition & 1 deletion examples/rolldice/user/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/auto/examples/rolldice/user

go 1.24.1
go 1.23.0

require (
github.com/mattn/go-sqlite3 v1.14.27
Expand Down
Loading