-
Notifications
You must be signed in to change notification settings - Fork 1
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
Improve QA workflow #46
Conversation
@@ -5,7 +5,7 @@ jobs: | |||
strategy: | |||
matrix: | |||
php: [ '8.1', '8.2', '8.3' ] | |||
lowest: [ '0','1' ] | |||
dependencies: [ highest, lowest ] |
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.
Display meaningful words in workflow run titles, no more binary code.
@@ -16,21 +16,20 @@ jobs: | |||
php-version: ${{ matrix.php }} | |||
extensions: mbstring, intl | |||
coverage: xdebug | |||
tools: composer:v2 |
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.
Composer v2 is the default for years.
env: | ||
COMPOSER_PREFER_LOWEST: ${{ matrix.lowest }} | ||
PHING_VERSION: '3.0.0' |
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.
Upgrade Phing.
COMPOSER_PREFER_LOWEST: ${{ matrix.lowest }} | ||
PHING_VERSION: '3.0.0' | ||
run: | | ||
mkdir -p ~/.local/bin |
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.
This is already on PATH
.
actions/runner-images#2491
- name: Composer install | ||
run: bin/phing composer:install |
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.
phing composer:install
did nothing at all
Hi, I will accept your PR and make some changes later. |
Glad to contribute. |
@jawira This is your go-to solution.
|
@szepeviktor I followed your suggestions and improved pipelines even more. Thanks! :) |
You're welcome. |
Please see comments below.