Skip to content

Commit

Permalink
Re-add sonarqube
Browse files Browse the repository at this point in the history
  • Loading branch information
ShuCh3n committed Nov 15, 2023
1 parent 134f541 commit 9918641
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/sonarqube.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: SonarQube PR Analysis

on:
push:
branches:
- master
- develop/
- 'bugfix/**'
pull_request:
types: [opened, synchronize, reopened]

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 }}

0 comments on commit 9918641

Please sign in to comment.