Skip to content

gomod: Update Go toolchain to 1.25.3 and remove 1.24 compatibility #119

gomod: Update Go toolchain to 1.25.3 and remove 1.24 compatibility

gomod: Update Go toolchain to 1.25.3 and remove 1.24 compatibility #119

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Sonar Report
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Generate Sonar Report
run: go test -coverpkg=./... -coverprofile=coverage.out -json ./... > sonar-report.json
- name: Upload coverage reports to Sonar
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
if: github.event.pull_request.head.repo.full_name == github.repository || env.SONAR_TOKEN != ''
uses: SonarSource/sonarqube-scan-action@fd88b7d7ccbaefd23d8f36f73b59db7a3d246602 # v6.0.0