Hi
I'm trying to create a report to use on Sonarqube for code coverage
I decide to use Slather in my GitHub action but I receive an error
My action
- name: Generate coverage report with Slather
run: |
slather coverage --sonarqube-xml \
--workspace MyApp.xcworkspace \
--scheme MyApp \
MyApp.xcodeproj \
--ignore "Pods/*" "build/*" "DerivedData/*"
But I got this error
ERROR: too many arguments
Could you help me?
Thanks