Remove superfluous double-quotes

This commit is contained in:
Sebastian Bergmann 2025-05-25 08:40:45 +02:00
parent a7adaa1c3b
commit e935ca93a8
No known key found for this signature in database
GPG Key ID: 4AA394086372C20A
1 changed files with 17 additions and 17 deletions

View File

@ -1,13 +1,13 @@
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
on:
- "pull_request"
- "push"
- pull_request
- push
name: "CI"
name: CI
env:
COMPOSER_ROOT_VERSION: "7.0.x-dev"
COMPOSER_ROOT_VERSION: 7.0.x-dev
permissions:
contents: read
@ -61,25 +61,25 @@ jobs:
fail-fast: false
matrix:
php-version:
- "8.3"
- "8.4"
- "8.5"
- 8.3
- 8.4
- 8.5
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: Checkout
uses: actions/checkout@v4
- name: "Install PHP with extensions"
uses: "shivammathur/setup-php@v2"
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
coverage: "xdebug"
php-version: ${{ matrix.php-version }}
coverage: xdebug
- name: "Install dependencies with Composer"
run: "./tools/composer update --no-ansi --no-interaction --no-progress"
- name: Install dependencies with Composer
run: ./tools/composer update --no-ansi --no-interaction --no-progress
- name: "Run tests with PHPUnit"
run: "vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml"
- name: Run tests with PHPUnit
run: vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml
- name: Upload test results to Codecov.io
if: ${{ !cancelled() }}