Skip to content

Commit 5f57e63

Browse files
committed
ci(lint): install composer dependencies
1 parent 6f0bb43 commit 5f57e63

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/lint.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,16 @@ jobs:
2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2
2323
with:
24-
php-version: '8.1'
24+
php-version: "8.1"
25+
extensions: bcmath, curl, gd, mbstring, mysql, openssl, pdo, tokenizer, xml, zip
2526
tools: composer:v2
2627
coverage: none
2728

29+
- name: Setup .env
30+
run: cp .env.ci .env
31+
32+
- name: Install dependencies
33+
run: composer install --no-interaction --no-progress --no-suggest --prefer-dist
34+
2835
- name: PHP CS Fixer
2936
run: vendor/bin/php-cs-fixer fix --dry-run --diff

0 commit comments

Comments
 (0)