First try for coverage#47
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds code coverage reporting to the CI workflow using both Codecov and Coveralls. Coverage is collected only on Ubuntu builds to avoid redundant data collection across different operating systems.
- Split test execution into coverage-enabled (Ubuntu) and coverage-disabled (macOS, Windows) paths
- Process coverage data using
julia-processcoverageaction - Upload coverage reports to both Codecov and Coveralls services
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Nitpick suggestion by copilot
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated 4 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| # At first, we check out the repository and download all artifacts | ||
| # (and list files for debugging). | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/download-artifact@v6 |
There was a problem hiding this comment.
There's a version mismatch between artifact actions. This workflow uses actions/upload-artifact@v5 (lines 106, 153) but actions/download-artifact@v6 here. For proper compatibility, both upload and download artifact actions should use the same major version (either both v5 or both v6). This mismatch may cause artifacts to not be found or downloaded correctly.
| - uses: actions/download-artifact@v6 | |
| - uses: actions/download-artifact@v5 |
No description provided.