All checks were successful
Go CI/CD / go-ci (push) Successful in 11m13s
This commit initializes the project with Go module support and a basic `StoneError` struct. It also introduces .gitignore, SonarQube configuration, and multiple CI/CD workflows for branch, tag, and protected branch scenarios to automate testing, static analysis, and builds.
10 lines
321 B
INI
10 lines
321 B
INI
sonar.projectKey=f91c1ade-619a-4d18-b7c9-5143b0c7bd47
|
|
sonar.projectName=stone-utils/stoneerror
|
|
sonar.language=go
|
|
sonar.sources=.
|
|
sonar.exclusions=**/*_test.go
|
|
sonar.tests=.
|
|
sonar.test.inclusions=**/*_test.go
|
|
sonar.go.tests.reportPaths=test-report.out
|
|
sonar.go.coverage.reportPaths=coverage.out
|
|
sonar.qualitygate.wait=true |