/julia-uploadcodecov

This action uploads test coverage results for a Julia package to codecov.io.

Primary LanguageJavaScriptMIT LicenseMIT

julia-uploadcodecov Action

This action uploads Julia coverage results to Codecov.

Deprecation Notice

This action has been deprecated. It is no longer recommended to use this action in workflows.

To upload coverage reports to Codecov for Julia packages, use julia-actions/julia-processcoverage in combination with codecov/codecov-action. This new approach allows you to upload coverage results from public repos without requiring a token.

You can find updated example workflows in julia-actions/julia-processcoverage, PkgTemplates.jl, or PkgButler.

Usage

      - uses: julia-actions/julia-uploadcodecov@latest
        env:
          CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

To upload coverage only for one version:

      - if: startsWith(matrix.os,'ubuntu') && startsWith(matrix.version,'1.4') 
        uses: julia-actions/julia-uploadcodecov@latest
        env:
          CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}