chore(deps): update konflux references (#131) #103
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 report on push to the "main" branch | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
coverage: | |
name: Upload code coverage report | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: './go.mod' | |
- name: Run tests and collect coverage | |
run: make test | |
- name: Upload Codecov Report | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true |