Skip to content

Commit f3a01b2

Browse files
Remove superfluous double-quotes
1 parent 7391006 commit f3a01b2

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
22

33
on:
4-
- "pull_request"
5-
- "push"
4+
- pull_request
5+
- push
66

7-
name: "CI"
7+
name: CI
88

99
env:
10-
COMPOSER_ROOT_VERSION: "6.0.x-dev"
10+
COMPOSER_ROOT_VERSION: 6.0.x-dev
1111

1212
permissions:
1313
contents: read
@@ -61,25 +61,25 @@ jobs:
6161
fail-fast: false
6262
matrix:
6363
php-version:
64-
- "8.3"
65-
- "8.4"
66-
- "8.5"
64+
- 8.3
65+
- 8.4
66+
- 8.5
6767

6868
steps:
69-
- name: "Checkout"
70-
uses: "actions/checkout@v4"
69+
- name: Checkout
70+
uses: actions/checkout@v4
7171

72-
- name: "Install PHP with extensions"
73-
uses: "shivammathur/setup-php@v2"
72+
- name: Install PHP with extensions
73+
uses: shivammathur/setup-php@v2
7474
with:
75-
php-version: "${{ matrix.php-version }}"
76-
coverage: "xdebug"
75+
php-version: ${{ matrix.php-version }}
76+
coverage: xdebug
7777

78-
- name: "Install dependencies with Composer"
79-
run: "./tools/composer update --no-ansi --no-interaction --no-progress"
78+
- name: Install dependencies with Composer
79+
run: ./tools/composer update --no-ansi --no-interaction --no-progress
8080

81-
- name: "Run tests with PHPUnit"
82-
run: "vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml"
81+
- name: Run tests with PHPUnit
82+
run: vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml
8383

8484
- name: Upload test results to Codecov.io
8585
if: ${{ !cancelled() }}

0 commit comments

Comments
 (0)