action.yml 405 B

123456789101112131415
  1. name: 'SPM lcov report'
  2. description: 'Swift Package Manager Code Coverage Report'
  3. author: 'Maxime Epain'
  4. inputs:
  5. output-file:
  6. description: 'The output file path'
  7. required: false
  8. default: '.build/debug/codecov/lcov.info'
  9. file-format:
  10. description: 'The output file format'
  11. required: false
  12. default: 'lcov'
  13. runs:
  14. using: 'node12'
  15. main: 'index.js'