on: push: branches: - main pull_request: types: [opened, synchronize, reopened] name: SonarQube Scan jobs: sonarqube: name: SonarQube Trigger runs-on: ubuntu-latest steps: - name: Checking out uses: actions/checkout@v4 with: # Disabling shallow clone is recommended for improving relevancy of reporting fetch-depth: 0 - name: SonarQube Scan uses: sonarsource/sonarqube-scan-action@master env: SONAR_TOKEN: ${{ secrets.SONARQUBE_USER_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }} with: args: > -Dsonar.projectVersion=1.0.0 -Dsonar.projectKey=${{ secrets.SONARQUBE_PROJECT_KEY }} - name: Setup PHP with Xdebug uses: shivammathur/setup-php@v2 with: php-version: '8.2' coverage: xdebug - name: Install dependencies with composer run: composer update --no-ansi --no-interaction --no-progress - name: Run tests with phpunit/phpunit run: vendor/bin/phpunit --coverage-clover=coverage.xml