Skip to content

Commit

Permalink
Fix artifact paths
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Fedurtsya <[email protected]>
  • Loading branch information
Sieg committed Oct 2, 2023
1 parent 7aa77d5 commit d0955ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ jobs:
- name: Checkout current module
uses: actions/checkout@v4

- name: Download Integration TestsLog artifacts
- name: Download Integration artifacts
continue-on-error: true
uses: actions/download-artifact@v3
with:
Expand All @@ -393,8 +393,8 @@ jobs:
- name: Fix coverage paths
if: always()
run: |
sed -i 's+/var/www/test-module/+./+' source/coverage/unit.xml
sed -i 's+/var/www/test-module/+./+' source/coverage/integration.xml
sed -i 's+/var/www/test-module/+./+' coverage/unit.xml
sed -i 's+/var/www/test-module/+./+' coverage/integration.xml
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
Expand All @@ -408,6 +408,6 @@ jobs:
-Dsonar.sources=src
-Dsonar.tests=tests
-Dsonar.sourceEncoding=UTF-8
-Dsonar.php.coverage.reportPaths=source/coverage/unit.xml,source/coverage/integration.xml
-Dsonar.php.coverage.reportPaths=coverage/unit.xml,coverage/integration.xml
-Dsonar.cpd.php.minimumTokens=25
-Dsonar.cpd.php.minimumLines=5

0 comments on commit d0955ec

Please sign in to comment.