Allow overriding Ambient parameters in IstioCNI #7
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: integration-tests | |
on: [push, pull_request] | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run coverage | |
run: | | |
make test.integration \ | |
-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 |