-
Notifications
You must be signed in to change notification settings - Fork 16
Make use of GHA features #90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
php: ['8.0', '8.1', '8.3', '8.4'] | ||
include: | ||
- php: '8.2' | ||
coverage: 'true' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Introduce a variable for coverage generation.
@@ -19,31 +22,27 @@ jobs: | |||
with: | |||
php-version: ${{ matrix.php }} | |||
extensions: mbstring, json | |||
coverage: xdebug | |||
coverage: ${{ matrix.coverage && 'xdebug' || 'none' }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
php-coveralls -v | ||
env: | ||
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: composer update --no-interaction |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We do not have a lock file, install
emits a warning.
Pull Request Test Coverage Report for Build 14442059695Details
💛 - Coveralls |
Thanks for the improvements! |
Glad to contribute. |
Please see comments below.