Skip to content

Commit 8bfea71

Browse files
Remove superfluous double-quotes
1 parent ef66644 commit 8bfea71

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,16 +1,16 @@
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
permissions:
1010
contents: read
1111

1212
env:
13-
COMPOSER_ROOT_VERSION: "7.0.x-dev"
13+
COMPOSER_ROOT_VERSION: 7.0.x-dev
1414

1515
jobs:
1616
coding-guidelines:
@@ -61,26 +61,26 @@ 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
ini-values: memory_limit=-1
7878

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

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

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

0 commit comments

Comments
 (0)