Automator: Update dependencies in istio-ecosystem/sail-operator@main #163
Workflow file for this run
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: Code coverage workflow | |
on: [push, pull_request] | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run coverage | |
run: | | |
make test \ | |
-e COVERAGE=true | |
- name: Upload to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
files: out/coverage-unit.out,out/coverage-integration.out | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true |