Skip to content

Sonarqube integration for static code analysis #1

Sonarqube integration for static code analysis

Sonarqube integration for static code analysis #1

Workflow file for this run

name: SonarQube Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
sonarQube:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: SonarQube use
uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}