Skip to content

chore(deps): bump buf.build/gen/go/agglayer/agglayer/grpc/go from 1.5.1-20251003171624-441244f9c27c.2 to 1.6.1-20260408162430-f39b589db9b4.1 #7088

chore(deps): bump buf.build/gen/go/agglayer/agglayer/grpc/go from 1.5.1-20251003171624-441244f9c27c.2 to 1.6.1-20260408162430-f39b589db9b4.1

chore(deps): bump buf.build/gen/go/agglayer/agglayer/grpc/go from 1.5.1-20251003171624-441244f9c27c.2 to 1.6.1-20260408162430-f39b589db9b4.1 #7088

Workflow file for this run

name: Test Unit and SonarCloud analysis
on:
push:
branches:
- main
- develop
- 'release/**'
pull_request:
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-unit:
name: test-unit
strategy:
fail-fast: false
matrix:
go-version: [1.25.7]
goarch: ["amd64"]
runs-on: amd-runner-2204
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
env:
GOARCH: ${{ matrix.goarch }}
- name: Test
run: make test-unit
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v6.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}