diff options
author | Sviatoslav Sydorenko (Святослав Сидоренко) <wk@sydorenko.org.ua> | 2024-09-14 03:11:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-14 03:11:11 +0200 |
commit | abdc669e502e3fdf583cb3e2ffaf500d040cb1d8 (patch) | |
tree | d5d54eefdd8b4737fc2c11f73ad5b955de78e35b /.github/workflows | |
parent | Validate org-user membership from gateway (#15508) (diff) | |
download | awx-abdc669e502e3fdf583cb3e2ffaf500d040cb1d8.tar.xz awx-abdc669e502e3fdf583cb3e2ffaf500d040cb1d8.zip |
🧪 Pass specific report files to `codecov-cli` (#15520)
The automatic discovery is currently unreliable.
Ref: https://github.com/codecov/codecov-cli/issues/500
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f2aeeb845..c8b8c9c344 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,6 +67,8 @@ jobs: ${{ toJSON(env.UPSTREAM_REPOSITORY_ID == github.repository_id) }} + files: >- + ${{ steps.make-run.outputs.cov-report-files }} flags: >- CI-GHA, pytest, @@ -85,6 +87,8 @@ jobs: ${{ toJSON(env.UPSTREAM_REPOSITORY_ID == github.repository_id) }} + files: >- + ${{ steps.make-run.outputs.test-result-files }} flags: >- CI-GHA, pytest, |