diff --git a/.gitea/workflows/build_check.yaml b/.gitea/workflows/build_check.yaml index 01da39a..9fb3f12 100644 --- a/.gitea/workflows/build_check.yaml +++ b/.gitea/workflows/build_check.yaml @@ -12,7 +12,8 @@ jobs: Build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout Git Repo + uses: actions/checkout@v4 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis @@ -25,7 +26,8 @@ jobs: - name: Execute Go Test files with coverage report run: TESTCONTAINERS_RYUK_DISABLED=true go test -v ./... -json -coverprofile="coverage.out" | tee "test-report.out" - - uses: sonarsource/sonarqube-scan-action@master + - name: SonarQube + uses: sonarsource/sonarqube-scan-action@master env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ vars.SONAR_HOST_URL }} \ No newline at end of file