chore(helm): make capsule configuration name configurable via helm #485
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Codecov | |
permissions: {} | |
on: | |
pull_request: | |
branches: [ "main" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
codecov: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: Setup caches | |
uses: ./.github/actions/setup-caches | |
timeout-minutes: 5 | |
continue-on-error: true | |
with: | |
build-cache-key: codecov | |
- name: Check secret | |
id: checksecret | |
uses: ./.github/actions/exists | |
with: | |
value: ${{ secrets.CODECOV_TOKEN }} | |
- name: Generate Code Coverage Report | |
if: steps.checksecret.outputs.result == 'true' | |
run: make test | |
- name: Upload Report to Codecov | |
if: steps.checksecret.outputs.result == 'true' | |
uses: codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c # v4.4.1 | |
with: | |
file: ./coverage.out | |
fail_ci_if_error: true | |
verbose: true |