Skip to content

Bump go.opentelemetry.io/otel from 1.30.0 to 1.31.0 (#79) #189

Bump go.opentelemetry.io/otel from 1.30.0 to 1.31.0 (#79)

Bump go.opentelemetry.io/otel from 1.30.0 to 1.31.0 (#79) #189

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
goyek:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23'
cache-dependency-path: '**/go.sum'
- name: Build
run: ./goyek.sh -v all diff
compatibility-test:
strategy:
fail-fast: false
matrix:
go-version:
- '1.22'
- '1.23'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- run: go test -race ./...
compatibility-check:
runs-on: ubuntu-latest
if: ${{ always() }}
needs: [compatibility-test]
steps:
- name: Test if compatibility-test passed
run: |
echo ${{ needs.compatibility-test.result }}
test ${{ needs.compatibility-test.result }} == "success"