Update .github/workflows/code_coverage.yaml

Co-authored-by: codiumai-pr-agent-pro[bot] <151058649+codiumai-pr-agent-pro[bot]@users.noreply.github.com>
This commit is contained in:
Tal
2024-08-06 19:45:14 +03:00
committed by GitHub
parent e717e8ae81
commit c07059e139

View File

@ -41,6 +41,12 @@ jobs:
docker cp test_container:/app/coverage.xml coverage.xml
- name: Validate coverage report
run: |
if [ ! -f coverage.xml ]; then
echo "Coverage report not found"
exit 1
fi
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.0.1
with: