CI: Separate docker build and test steps #101
Reference in New Issue
Block a user
No description provided.
Delete Branch "ci/separate-build-step"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Title: CI: Separate docker build and test steps
Description:
This PR separates the
docker buildanddocker runcommands into distinct steps in the GitHub Actions workflow.Previously,
docker buildand the test execution were combined in a single step, which often cluttered the logs with build output, making it harder to spot test failures. By separating them, the CI output becomes cleaner and it is easier to distinguish between build failures and test failures.Changes:
Linuxjob into "Build" and "Run tests".Code Coveragejob into "Build" and "Run coverage".2ebf13b090to5601dfa2d45601dfa2d4tod4254db814The change improves observability, which is always nice to see. I don't see any issues with it, so it's getting merged ASAP.