Skip to content

Commit 8835738

Browse files
committed
[TASK] Cleanup
1 parent dbdb78a commit 8835738

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.github/workflows/code_coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
php-version: 7.4
2020
coverage: none
2121

22-
- uses: "ramsey/composer-install@v2"
22+
- uses: ramsey/composer-install@v2
2323

2424
- run: |
2525
phpdbg -qrr -d memory_limit=-1 vendor/bin/phpunit --coverage-clover build/logs/clover.xml

.github/workflows/php_cs_fixer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
php-version: 7.4
2626
coverage: none # disable xdebug, pcov
2727

28-
- uses: "ramsey/composer-install@v2"
28+
- uses: ramsey/composer-install@v2
2929

3030
- name: Run php-cs-fixer
3131
run: vendor/bin/php-cs-fixer fix --diff

.github/workflows/phpstan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
php-version: 7.4
1818
coverage: none
1919

20-
- uses: "ramsey/composer-install@v2"
20+
- uses: ramsey/composer-install@v2
2121

2222
- run: vendor/bin/phpstan analyse --ansi

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install Box global
2323
run: composer global require "humbug/box:^3.8" --no-ansi --no-interaction --no-progress --classmap-authoritative
2424

25-
- uses: "ramsey/composer-install@v2"
25+
- uses: ramsey/composer-install@v2
2626
with:
2727
composer-options: "--no-ansi --no-interaction --no-dev --classmap-authoritative"
2828

.github/workflows/tests.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,16 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
15+
1516
- name: Setup PHP
1617
uses: shivammathur/setup-php@v2
1718
with:
1819
php-version: '7.4'
1920
coverage: none
21+
2022
- name: Install overtrue/phplint
2123
run: composer global require "overtrue/phplint:^2.0" --no-ansi --no-interaction --no-progress --classmap-authoritative
24+
2225
- name: Run overtrue/phplint
2326
run: phplint ./
2427

@@ -37,7 +40,7 @@ jobs:
3740
php-version: ${{ matrix.php }}
3841
coverage: none # disable xdebug, pcov
3942

40-
- uses: "ramsey/composer-install@v2"
43+
- uses: ramsey/composer-install@v2
4144
with:
4245
composer-options: "--no-interaction --no-suggest"
4346

@@ -58,7 +61,7 @@ jobs:
5861
php-version: ${{ matrix.php }}
5962
coverage: none # disable xdebug, pcov
6063

61-
- uses: "ramsey/composer-install@v2"
64+
- uses: ramsey/composer-install@v2
6265
with:
6366
composer-options: "--no-interaction --no-suggest"
6467

0 commit comments

Comments
 (0)