Skip to content

Commit

Permalink
Merge pull request #167 from oat-sa/feature/sonarqube-integration
Browse files Browse the repository at this point in the history
Sonarqube integration with project
  • Loading branch information
mike-ionut-mihai-sandu-tao committed Oct 20, 2023
2 parents e464bdd + 1e3ff25 commit 9ade191
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/sonar.yml
@@ -0,0 +1,41 @@
name: Sonarqube_CI
on:

push:
branches:
- master
- main
- develop

pull_request:
types: [opened, synchronize, reopened]
branches:
- '**'
workflow_dispatch:

jobs:
build:
name: Sonarqube_CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Sonarqube scan
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
- name: Sonarqube quality gate check
id: sonarqube-quality-gate-check
uses: sonarsource/sonarqube-quality-gate-action@master
timeout-minutes: 5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}


- name: "Example show SonarQube Quality Gate Status value"
run: echo "The Quality Gate status is ${{ steps.sonarqube-quality-gate-check.outputs.quality-gate-status }}"
1 change: 1 addition & 0 deletions sonar-project.properties
@@ -0,0 +1 @@
sonar.projectKey=lib-lti1p3-core

0 comments on commit 9ade191

Please sign in to comment.