Skip to content

coverage

coverage #1

Workflow file for this run

name: coverage
on:
workflow_run:
workflows: [tests]
types: [completed]
jobs:
codecov:
name: codecov
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/[email protected]
- name: Download coverage artifacts
uses: actions/[email protected]
with:
github-token: ${{ github.token }}
run-id: ${{ github.event.workflow_run.id }}
- name: Report coverage
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true