Skip to content

Commit

Permalink
adding github action for sonar and added sonar property file
Browse files Browse the repository at this point in the history
  • Loading branch information
edwin-focaloid committed Sep 29, 2023
1 parent d8337c7 commit 2ec6751
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Sonarqube_CI
on:
pull_request:
branches:
- '**'
workflow_dispatch:

jobs:
build:
name: Sonarqube_CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
# Job will fail when the Quality Gate is red
- uses: sonarsource/sonarqube-quality-gate-action@master
timeout-minutes: 5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
1 change: 1 addition & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sonar.projectKey=package-tao

0 comments on commit 2ec6751

Please sign in to comment.