Skip to content

Commit

Permalink
[Misc] Operator: sonar workflow added
Browse files Browse the repository at this point in the history
Sonar workflow added
  • Loading branch information
Pavan-SAP authored Sep 6, 2023
1 parent 9051b1f commit d63ae3d
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 32 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: CAP Operator Manager (Build & Unit test)

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
CGO_ENABLED: 0

permissions:
contents: read
pull-requests: read # allows SonarCloud to decorate PRs with analysis results

jobs:
build:
name: Build and Test
runs-on: ubuntu-22.04
steps:

- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
cache: true

- name: Download module and all dependencies
run: go mod download

- name: Build all relevant packages
run: go build -v .

- name: Test relevant packages
run: go test -v -cover -coverprofile=coverage.out ./...

- name: Upload Test results
uses: actions/upload-artifact@v3
with:
name: test-coverage
path: coverage.out

analysis:
name: Analyze with Sonar Cloud
needs: build
runs-on: ubuntu-22.04
steps:

- name: Check out code for Sonar Analysis
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Download Test results
uses: actions/download-artifact@v3
with:
name: test-coverage

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master

Check warning on line 64 in .github/workflows/build.yml

View check run for this annotation

In Solidarity / Inclusive Language

Match Found

Please consider an alternative to `master`. Possibilities include: `primary`, `main`, `leader`, `active`, `writer`
Raw output
/\b(?!masterdata|masterdata\w+\b)master/gi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
32 changes: 0 additions & 32 deletions .github/workflows/go.yml

This file was deleted.

0 comments on commit d63ae3d

Please sign in to comment.