Skip to content

Commit 5cd4bab

Browse files
author
Gonzalo Diaz
committed
[CONFIG] Node script for github-actions, sonarcloud automatic scan disabled (to enable coverage support):
https://docs.sonarsource.com/sonarcloud/enriching/test-coverage/python-test-coverage/
1 parent 8ceb9a8 commit 5cd4bab

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/python-coverage.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
steps:
2323
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
24+
with:
25+
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2426

2527
- name: Setup Python
2628
uses: actions/setup-python@master
@@ -44,3 +46,9 @@ jobs:
4446
with:
4547
token: ${{ secrets.CODECOV_TOKEN }} # required
4648
verbose: true # optional (default = false)
49+
50+
- name: SonarCloud Scan
51+
uses: SonarSource/sonarcloud-github-action@master
52+
env:
53+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
54+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

sonar-project.properties

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
sonar.projectKey=sir-gon_algorithm-exercises-py
2+
sonar.organization=sir-gon
3+
4+
# This is the name and version displayed in the SonarCloud UI.
5+
#sonar.projectName=algorithm-exercises-py
6+
#sonar.projectVersion=1.0
7+
8+
9+
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
10+
sonar.sources=src
11+
sonar.exclusions=**/*test.js
12+
13+
# Encoding of the source code. Default is default system encoding
14+
#sonar.sourceEncoding=UTF-8
15+
16+
sonar.python.version=3.12

0 commit comments

Comments
 (0)