(experimental) CI workflow split#634
Merged
bobstrecansky merged 3 commits intoJun 26, 2026
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #634 +/- ##
============================================
- Coverage 80.46% 80.46% -0.01%
- Complexity 1669 1681 +12
============================================
Files 116 117 +1
Lines 6265 6362 +97
============================================
+ Hits 5041 5119 +78
- Misses 1224 1243 +19 Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report in Codecov by Harness.
🚀 New features to boost your workflow:
|
ChrisLightfootWild
marked this pull request as ready for review
June 24, 2026 12:46
| run: PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php -v --dry-run --stop-on-violation --using-cache=no -vvv | ||
|
|
||
| - name: Run Phan | ||
| if: ${{ !cancelled() }} |
Contributor
Author
There was a problem hiding this comment.
This allows the following steps to run, but still fails the job as a whole.
This way, we can see all of the failures in a single pass.
ChrisLightfootWild
force-pushed
the
poc/shared-ci
branch
from
June 24, 2026 19:19
969da7a to
f6c69d6
Compare
bobstrecansky
approved these changes
Jun 26, 2026
intuibase
added a commit
to intuibase/opentelemetry-php-contrib
that referenced
this pull request
Jul 8, 2026
Follows the experimental split from PR open-telemetry#634: give Metrics/Runtime its own path-filtered workflow calling php-contrib.yml and drop it from the monolithic php.yml matrix.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Propose splitting the main CI pipeline into various workflows, which allows us to:
Fixes