Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
BenAlvo1 committed Jan 1, 2025
1 parent 5f32e38 commit aacff5a
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,18 @@ jobs:
- name: Clean
run: ./gradlew clean

# Run tests and generate coverage report
- name: Tests with Coverage
run: ./gradlew test jacocoTestReport -i --tests com.checkmarx.intellij.standard*
# Run tests
- name: Run Tests
run: ./gradlew test -i --tests com.checkmarx.intellij.standard*

# Generate coverage report
- name: Generate Coverage Report
run: ./gradlew jacocoTestReport -i

# Save coverage report as an artifact
- name: Upload Coverage Report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: |
build/reports/jacoco/test/html/
path: build/reports/jacoco/test/html/

0 comments on commit aacff5a

Please sign in to comment.