Skip to content

Commit 5ad2e1e

Browse files
committed
fix workflow
Signed-off-by: Kirill Mokevnin <mokevnin@gmail.com>
1 parent 36ad74a commit 5ad2e1e

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/pyci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
- name: Run test coverage
2525
run: |
2626
make test-coverage
27-
- name: SonarQubeScan
28-
uses: SonarSource/sonarqube-scan-action@v7
29-
env:
30-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
31-
with:
32-
args: >
33-
-Dsonar.projectKey=hexlet-boilerplates_python-package
34-
-Dsonar.organization=hexlet-boilerplates
35-
-Dsonar.python.coverage.reportPaths=coverage.xml
27+
# - name: SonarQubeScan
28+
# uses: SonarSource/sonarqube-scan-action@v7
29+
# env:
30+
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
31+
# with:
32+
# args: >
33+
# -Dsonar.projectKey=hexlet-boilerplates_python-package
34+
# -Dsonar.organization=hexlet-boilerplates
35+
# -Dsonar.python.coverage.reportPaths=coverage.xml

hexlet_python_package/half.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
def half(num):
1+
def half(num: int) -> float:
22
return num / 2

0 commit comments

Comments
 (0)