Hi people,
I am trying to integrate GitHub actions with SonarCloud and after running the scan, the number of lines shows zero every time. I am scanning the development branch which is not the base branch
Here is the properties file configuration
sonar.projectKey=data-sentinel-ai_log-puller
sonar.organization=data-sentinel-ai
# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=datasentinelai
sonar.projectVersion=1.1
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=.
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
# SonarQube will not scan the files with paths that matches the pattern provided here
sonar.exclusions=node_modules/**
# Pattern of paths of test files
sonar.test.inclusions=test/**
# SonarQube will not consider files with paths that matches patterns provided here when calculating test coverage
sonar.coverage.exclusions=docs/**, test/**