Meta: Add sonar.python.version config to silence sonar cloud warning

All of our python scripts use python3
This commit is contained in:
Brian Gianforcaro 2021-09-02 21:51:15 -07:00 committed by Andreas Kling
parent 4961fa4715
commit 3ad2b39eef
Notes: sideshowbarker 2024-07-18 04:50:32 +09:00

View file

@ -58,6 +58,7 @@ jobs:
echo "sonar.host.url=${{ env.SONAR_SERVER_URL }}" >> ${{ github.workspace }}/sonar-project.properties
echo "sonar.sources=AK,Build,Userland,Kernel,Meta" >> ${{ github.workspace }}/sonar-project.properties
echo "sonar.tests=Tests" >> ${{ github.workspace }}/sonar-project.properties
echo "sonar.python.version=3.7, 3.8, 3.9" >> ${{ github.workspace }}/sonar-project.properties
# === OS SETUP ===
# TODO: Is there someway to share these steps with the cmake.yml?