Remove superfluous double-quotes
This commit is contained in:
parent
a7adaa1c3b
commit
e935ca93a8
|
|
@ -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() }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue