-
-
Notifications
You must be signed in to change notification settings - Fork 75
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
Add CI job names #199
Add CI job names #199
Conversation
php-version: [8.1, 8.2, 8.3] | ||
composer-flags: [null] | ||
php-version: ['8.1', '8.2', '8.3'] |
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.
flags was unused
quote YAML floats
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
coverage: none | ||
extensions: intl curl | ||
- run: php -v |
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 version is included in the output of shivammathur/setup-php
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COMPOSER_TOKEN: ${{ github.token }} |
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.
New name!
run: composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader | ||
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader |
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 in the repo.
run: ./vendor/bin/pint --test --format=checkstyle | cs2pr | ||
run: composer exec -- pint --test --format=checkstyle | cs2pr |
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.
There is a Composer command to start binaries.
Thank you @szepeviktor ! |
Glad to contribute. |
Move comments to
name: