Skip to content

Commit

Permalink
Create sonarqube_pr_analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
LucianTuriacArnia committed Oct 6, 2023
1 parent d83e032 commit 8259a04
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/sonarqube_pr_analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
branches:
- main
- feature/payment_provider_gateway
- develop
- 'releases/**'
pull_request:
types: [opened, synchronize, reopened]

name: SonarQube PR Analysis
jobs:
sonarqube:
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 }}
SONAR_ROOT_CERT: ${{ secrets.SONAR_ROOT_CERT }}

0 comments on commit 8259a04

Please sign in to comment.