Codefresh Steps: Reusable Code for Common Operations
This page provides code you can use to perform common operations in the Codefresh CI/CD platform.
13.6K

Sends a code scan report to codecov codecov-reporter

Sends a code scan report to codecov

arguments

  • codecov_integration - Codecov integration name
  • os - OS being used ( alpine | linux | macos | windows )
  • working_directory - The directory to which the repository is cloned. It can be an explicit path in the container’s file system, or a variable that references another step. The default value is '/codefresh/volume/${{CF_REPO_NAME}}'
    codecov-report:
  title: Codecov report
  type: codecov-reporter
  arguments:
    codecov_integration: codecov

  
    codecov-report:
  title: Codecov report
  type: codecov-reporter
  arguments:
    codecov_integration: codecov
    working_directory: '/codefresh/volume/${{CF_REPO_NAME}}'

  
    codecov-report:
  title: Codecov report
  type: codecov-reporter
  arguments:
    codecov_integration: codecov
    working_directory: ./report-directory

  
github.com
Pavel Kostohrys
Jan 17, 2022