From 3ad2b39eef850b72ec45d651264dc4daacef176d Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Thu, 2 Sep 2021 21:51:15 -0700 Subject: [PATCH] Meta: Add sonar.python.version config to silence sonar cloud warning All of our python scripts use python3 --- .github/workflows/sonar-cloud-static-analysis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sonar-cloud-static-analysis.yml b/.github/workflows/sonar-cloud-static-analysis.yml index fc04b06751..c57d50e086 100644 --- a/.github/workflows/sonar-cloud-static-analysis.yml +++ b/.github/workflows/sonar-cloud-static-analysis.yml @@ -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?