1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 09:56:55 +00:00
kyverno/.github/workflows/codecov.yaml

41 lines
883 B
YAML
Raw Normal View History

name: Codecov
on:
push:
branches:
- 'main'
- 'release*'
pull_request:
branches:
- 'main'
- 'release*'
permissions: read-all
jobs:
codecov:
runs-on: ${{ matrix.os }}
strategy:
matrix:
2022-04-12 22:37:37 +08:00
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
- name: Unshallow
run: git fetch --prune --unshallow
- uses: actions/setup-go@d0a58c1c4d2b25278816e339b944508c875f3613 # v3.4.0
with:
go-version: ~1.18.6
- name: Generate Code Coverage Report
run: make code-cov-report
- name: Upload Report to Codecov
uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1
with:
file: ./coverage.out
fail_ci_if_error: true
verbose: true