Skip to content

Commit

Permalink
add sonarscan
Browse files Browse the repository at this point in the history
  • Loading branch information
kuldip-eic committed Mar 29, 2024
1 parent 995be54 commit 770d569
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/flow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: SonarCloud-Scan

on:
push:
branches:
- develop

jobs:
sonarcloud_scan:
runs-on: ubuntu-latest
steps:
- name: Code Clone
uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '17'

- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
13 changes: 13 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
sonar.projectKey=kuldipmori_ansible-software-install
sonar.organization=kuldipmori

# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=ansible-software-install
#sonar.projectVersion=1.0


# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=.

# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8

0 comments on commit 770d569

Please sign in to comment.