Skip to content
This repository has been archived by the owner on Jul 19, 2020. It is now read-only.

Latest commit

 

History

History
28 lines (19 loc) · 1.22 KB

README.md

File metadata and controls

28 lines (19 loc) · 1.22 KB

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 }}