Skip to content

chore: remove generate in gorelease for now #210

chore: remove generate in gorelease for now

chore: remove generate in gorelease for now #210

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: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "^1.24"
- name: "Check format"
run: "test -z $(gofmt -l .)"
- name: Build
run: go build -v ./...
- name: Test
run: |
go test -coverprofile=cov.all.out -v ./...
grep -v 'o11y/metric.go' cov.all.out > cov.out
go tool cover -func=cov.out
- name: Analyze with SonarCloud
uses: SonarSource/sonarqube-scan-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}