Skip to content

[Misc] OperatorManager: Docker - latest go version used #143

[Misc] OperatorManager: Docker - latest go version used

[Misc] OperatorManager: Docker - latest go version used #143

Workflow file for this run

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
if: github.repository_owner == 'sap'
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
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}